Oh right, casts can interfere. Test this too

llvm-svn: 12354
This commit is contained in:
Chris Lattner 2004-03-13 00:11:38 +00:00
parent 92295c5031
commit d689a5eb9c
1 changed files with 8 additions and 0 deletions

View File

@ -86,3 +86,11 @@ uint %test13(uint %A) {
%C = sub uint 0, %B ; == sar A, 31
ret uint %C
}
int %test14(uint %A) {
%B = shr uint %A, ubyte 31
%C = cast uint %B to int
%D = sub int 0, %C
ret int %D
}