diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-08-27 09:37:54 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-08-27 09:37:54 +0000 |
commit | 10eb4cfc3eb1d01bf8e45a14f9baeb3040aed55f (patch) | |
tree | 69b7d0ecbce06419f04b46e6030a58c0eb68d8aa /llvm/test/CodeGen/X86/fma_patterns.ll | |
parent | dc8d1f1039564940a44da00bcb755829dbf5256f (diff) | |
download | bcm5719-llvm-10eb4cfc3eb1d01bf8e45a14f9baeb3040aed55f.tar.gz bcm5719-llvm-10eb4cfc3eb1d01bf8e45a14f9baeb3040aed55f.zip |
llvm/test/CodeGen/X86/fma_patterns.ll: Add -mtriple=x86_64. It was incompatible on i686 and Windows x64.
llvm-svn: 162664
Diffstat (limited to 'llvm/test/CodeGen/X86/fma_patterns.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fma_patterns.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fma_patterns.ll b/llvm/test/CodeGen/X86/fma_patterns.ll index f7f919089b3..b22d029a093 100644 --- a/llvm/test/CodeGen/X86/fma_patterns.ll +++ b/llvm/test/CodeGen/X86/fma_patterns.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=core-avx2 -mattr=avx2,+fma -fp-contract=fast | FileCheck %s -; RUN: llc < %s -mcpu=bdver2 -mattr=-fma4 -fp-contract=fast | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=bdver2 -mattr=-fma4 -fp-contract=fast | FileCheck %s ; CHECK: test_x86_fmadd_ps ; CHECK: vfmadd213ps %xmm2, %xmm0, %xmm1 |