forked from OSchip/llvm-project
Fix testcase, the 'shift out all bits' doesn't apply to signed types.
llvm-svn: 2482
This commit is contained in:
parent
08b2c3638d
commit
bcb8138e08
|
@ -28,8 +28,8 @@ int "test4"(ubyte %A) {
|
|||
ret int %B
|
||||
}
|
||||
|
||||
int "test5"(int %A) {
|
||||
%B = shr int %A, ubyte 32 ;; shift all bits out
|
||||
ret int %B
|
||||
uint "test5"(uint %A) {
|
||||
%B = shr uint %A, ubyte 32 ;; shift all bits out
|
||||
ret uint %B
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue