diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-01 00:26:28 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-01 00:26:28 +0000 |
commit | 5cf8bac4cc5954a7083d45cf0ead7379d25a6f9c (patch) | |
tree | 28e513504fa9fd104e596b6abe1371b0a8799399 | |
parent | c11b7193a7a2ef2b6b64153319efafa413f7fe23 (diff) | |
download | external_llvm-5cf8bac4cc5954a7083d45cf0ead7379d25a6f9c.zip external_llvm-5cf8bac4cc5954a7083d45cf0ead7379d25a6f9c.tar.gz external_llvm-5cf8bac4cc5954a7083d45cf0ead7379d25a6f9c.tar.bz2 |
llvm/test/CodeGen/X86/fp-fast.ll: Suppress FMA4 on AMD Bulldozer host, corresponding to r162999.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163041 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/fp-fast.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fp-fast.ll b/test/CodeGen/X86/fp-fast.ll index 7d1046d..091f0de 100644 --- a/test/CodeGen/X86/fp-fast.ll +++ b/test/CodeGen/X86/fp-fast.ll @@ -1,4 +1,4 @@ -; RUN: llc -march=x86-64 -mtriple=x86_64-apple-darwin -enable-unsafe-fp-math < %s | FileCheck %s +; RUN: llc -march=x86-64 -mattr=-fma4 -mtriple=x86_64-apple-darwin -enable-unsafe-fp-math < %s | FileCheck %s ; CHECK: test1 define float @test1(float %a) { |