diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-09 18:55:52 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-09 18:55:52 +0000 |
commit | 228765f61f0f1ff9b6e07d87ed79544521a5414a (patch) | |
tree | bf256d3ae77f169926e1b4bbd50e0b53d9833be3 | |
parent | e4dd5c29f084bcbf481ab0a4dc2d136f7940c0cc (diff) | |
download | bcm5719-llvm-228765f61f0f1ff9b6e07d87ed79544521a5414a.tar.gz bcm5719-llvm-228765f61f0f1ff9b6e07d87ed79544521a5414a.zip |
Appease Atom buildbot after r185956 (explicitly turn on AVX)
llvm-svn: 185961
-rw-r--r-- | llvm/test/CodeGen/X86/extended-fma-contraction.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/wide-fma-contraction.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/extended-fma-contraction.ll b/llvm/test/CodeGen/X86/extended-fma-contraction.ll index e0dfbed7945..9de14505c71 100644 --- a/llvm/test/CodeGen/X86/extended-fma-contraction.ll +++ b/llvm/test/CodeGen/X86/extended-fma-contraction.ll @@ -1,5 +1,5 @@ ; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s -; RUN: llc -march=x86 -mattr=-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA +; RUN: llc -march=x86 -mattr=+avx,-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA ; CHECK: fmafunc define <3 x float> @fmafunc(<3 x float> %a, <3 x float> %b, <3 x float> %c) { diff --git a/llvm/test/CodeGen/X86/wide-fma-contraction.ll b/llvm/test/CodeGen/X86/wide-fma-contraction.ll index c4f73dab972..ab0cf2f3e19 100644 --- a/llvm/test/CodeGen/X86/wide-fma-contraction.ll +++ b/llvm/test/CodeGen/X86/wide-fma-contraction.ll @@ -1,5 +1,5 @@ ; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s -; RUN: llc -march=x86 -mattr=-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA +; RUN: llc -march=x86 -mattr=+avx,-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA ; CHECK: fmafunc define <16 x float> @fmafunc(<16 x float> %a, <16 x float> %b, <16 x float> %c) { |