forked from OSchip/llvm-project
parent
cc7644407c
commit
1cc1217121
|
@ -0,0 +1,8 @@
|
|||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 34
|
||||
|
||||
int %test(int %X) {
|
||||
; Do not fold into shr X, 34, as this uses undefined behavior!
|
||||
%Y = shr int %X, ubyte 17
|
||||
%Z = shr int %Y, ubyte 17
|
||||
ret int %Z
|
||||
}
|
Loading…
Reference in New Issue