1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Transforms/InstCombine/2009-03-20-AShrOverShift.ll
Chris Lattner 623662e8e1 Fix instcombine to not introduce undefined shifts when merging two
shifts together.  This fixes PR3851.

llvm-svn: 67411
2009-03-20 22:41:15 +00:00

10 lines
248 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {ashr i32 %val, 31}
; PR3851
define i32 @foo2(i32 %val) nounwind {
entry:
%shr = ashr i32 %val, 15 ; <i32> [#uses=3]
%shr4 = ashr i32 %shr, 17 ; <i32> [#uses=1]
ret i32 %shr4
}