mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
testcase for PR1014
llvm-svn: 31939
This commit is contained in:
parent
6010c0ef4a
commit
3323b82fe6
11
test/Regression/Transforms/InstCombine/2006-11-27-XorBug.ll
Normal file
11
test/Regression/Transforms/InstCombine/2006-11-27-XorBug.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'and.*32' &&
|
||||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 'or.*153'
|
||||
; PR1014
|
||||
|
||||
int %test(int %tmp1) {
|
||||
%ovm = and int %tmp1, 32 ; <int> [#uses=1]
|
||||
%ov3 = add int %ovm, 145 ; <int> [#uses=2]
|
||||
%ov110 = xor int %ov3, 153
|
||||
ret int %ov110
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user