New testcase

llvm-svn: 11766
This commit is contained in:
Chris Lattner 2004-02-23 20:19:51 +00:00
parent 7715d8e2ba
commit 745388980f

View File

@ -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
}