diff options
-rw-r--r-- | llvm/test/CodeGen/X86/extended-fma-contraction.ll | 4 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/wide-fma-contraction.ll | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/extended-fma-contraction.ll b/llvm/test/CodeGen/X86/extended-fma-contraction.ll index 9de14505c71..2fb46b993a0 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=+avx,-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA +; RUN: llc -march=x86 -mcpu=bdver2 -mattr=-fma -mtriple=x86_64-apple-darwin < %s | FileCheck %s +; RUN: llc -march=x86 -mcpu=bdver2 -mattr=-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 ab0cf2f3e19..35c09245798 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=+avx,-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA +; RUN: llc -march=x86 -mcpu=bdver2 -mattr=-fma -mtriple=x86_64-apple-darwin < %s | FileCheck %s +; RUN: llc -march=x86 -mcpu=bdver2 -mattr=-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) { |