diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-26 08:25:06 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-26 08:25:06 +0000 |
commit | ce380568b5406356a04d745c9c6f137000217ef4 (patch) | |
tree | c7f2b122fd0787529ed0b95e2564971afa2ee6c6 /llvm/test/Transforms/InstCombine/xor.ll | |
parent | 4f95f1ab08a707652664aa6d211c1a513dece122 (diff) | |
download | bcm5719-llvm-ce380568b5406356a04d745c9c6f137000217ef4.tar.gz bcm5719-llvm-ce380568b5406356a04d745c9c6f137000217ef4.zip |
For PR761:
Remove "target endian/pointersize" or add "target datalayout" to make
the test parse properly or set the datalayout because defaults changes.
For PR645:
Make global names use the @ prefix.
For llvm-upgrade changes:
Fix test cases or completely remove use of llvm-upgrade for test cases
that cannot survive the new renaming or upgrade capabilities.
llvm-svn: 33533
Diffstat (limited to 'llvm/test/Transforms/InstCombine/xor.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/xor.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/Transforms/InstCombine/xor.ll b/llvm/test/Transforms/InstCombine/xor.ll index f87e53a9227..b6c923d5b46 100644 --- a/llvm/test/Transforms/InstCombine/xor.ll +++ b/llvm/test/Transforms/InstCombine/xor.ll @@ -182,11 +182,11 @@ int %test26(int %a, int %b) { } -i32 %test27(i32 %b, i32 %c, i32 %d) { - %tmp2 = xor i32 %d, %b - %tmp5 = xor i32 %d, %c - %tmp = icmp eq i32 %tmp2, %tmp5 - %tmp6 = zext bool %tmp to i32 - ret i32 %tmp6 +int %test27(int %b, int %c, int %d) { + %tmp2 = xor int %d, %b + %tmp5 = xor int %d, %c + %tmp = icmp eq int %tmp2, %tmp5 + %tmp6 = zext bool %tmp to int + ret int %tmp6 } |