testcase reduced from Ptrdist/bc that is miscompiled by recent instcombine changes.

llvm-svn: 26151
This commit is contained in:
Chris Lattner 2006-02-13 22:31:50 +00:00
parent d2d174dd0e
commit 5898effde0
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
; RUN: llvm-as < %s | opt -instcombine -disable-output &&
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep undef
int %test(sbyte %A) {
%B = cast sbyte %A to int
%C = shr int %B, ubyte 8
ret int %C
}