diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-22 07:21:59 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-22 07:21:59 +0000 |
commit | 0de102b9d831893d49f4cfaf4f000ef1f0ab4fec (patch) | |
tree | 14c18aaba7a6939a51f95184d346091950712233 /test/CodeGen | |
parent | 65e9404646c2bb8968127436cabd9131658e2c6a (diff) | |
download | external_llvm-0de102b9d831893d49f4cfaf4f000ef1f0ab4fec.zip external_llvm-0de102b9d831893d49f4cfaf4f000ef1f0ab4fec.tar.gz external_llvm-0de102b9d831893d49f4cfaf4f000ef1f0ab4fec.tar.bz2 |
Relax expressions and add explicit triplets -linux and -win32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/xor.ll | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/X86/xor.ll b/test/CodeGen/X86/xor.ll index 6c623cb..b90d81a 100644 --- a/test/CodeGen/X86/xor.ll +++ b/test/CodeGen/X86/xor.ll @@ -1,5 +1,6 @@ ; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s -check-prefix=X32 -; RUN: llc < %s -march=x86-64 | FileCheck %s -check-prefix=X64 +; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s -check-prefix=X64 +; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s -check-prefix=X64 ; Though it is undefined, we want xor undef,undef to produce zero. define <4 x i32> @test1() nounwind { @@ -28,9 +29,9 @@ entry: ret i32 %tmp4 ; X64: test3: -; X64: notl %esi -; X64: andl %edi, %esi -; X64: movl %esi, %eax +; X64: notl [[A1:%esi|%edx]] +; X64: andl [[A0:%edi|%ecx]], [[A1]] +; X64: movl [[A1]], %eax ; X64: shrl %eax ; X64: ret |