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 | 796248fdb197b29f427819cc85a98bfad52c95ce (patch) | |
tree | b91ad442e8eed72c507e7f00a2311f479e72aa51 /test | |
parent | 990c4b87e37d394565a2e1a207ecac69b90fd90a (diff) | |
download | external_llvm-796248fdb197b29f427819cc85a98bfad52c95ce.zip external_llvm-796248fdb197b29f427819cc85a98bfad52c95ce.tar.gz external_llvm-796248fdb197b29f427819cc85a98bfad52c95ce.tar.bz2 |
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93242 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/fast-isel.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index 3dcd736..84b3fd7 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/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 |