diff options
author | Duncan Sands <baldrick@free.fr> | 2010-01-12 17:46:16 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-01-12 17:46:16 +0000 |
commit | b7168c270ed72d1335f9c6768db953244f029273 (patch) | |
tree | e486f942ec9c187d01cd11d6c6d49ea7303be7b4 /llvm/test/CodeGen/X86/fast-isel.ll | |
parent | 12e2e86f0f812d49cbf845e942c419f609ce0ff0 (diff) | |
download | bcm5719-llvm-b7168c270ed72d1335f9c6768db953244f029273.tar.gz bcm5719-llvm-b7168c270ed72d1335f9c6768db953244f029273.zip |
Revert commit 93204, since it causes the assembler to barf
on x86-64 linux with messages like this:
Error: Incorrect register `%r14' used with `l' suffix
llvm-svn: 93242
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-isel.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel.ll b/llvm/test/CodeGen/X86/fast-isel.ll index 3dcd736a140..84b3fd7caf3 100644 --- a/llvm/test/CodeGen/X86/fast-isel.ll +++ b/llvm/test/CodeGen/X86/fast-isel.ll @@ -14,7 +14,7 @@ fast: %t1 = mul i32 %t0, %s %t2 = sub i32 %t1, %s %t3 = and i32 %t2, %s - %t4 = or i32 %t3, %s + %t4 = xor i32 %t3, 3 %t5 = xor i32 %t4, %s %t6 = add i32 %t5, 2 %t7 = getelementptr i32* %y, i32 1 |