diff options
| author | Adam Nemet <anemet@apple.com> | 2017-03-22 00:58:15 +0000 |
|---|---|---|
| committer | Adam Nemet <anemet@apple.com> | 2017-03-22 00:58:15 +0000 |
| commit | 3087c96348e26da71fcfe75fe0f3320e1a82bdcc (patch) | |
| tree | 1493d80b2f6cb8b545748cb1da25949b4ba35bb9 /clang/test/CodeGen | |
| parent | 13bdbfb622410da15a436db1634854f2b6ff5fab (diff) | |
| download | bcm5719-llvm-3087c96348e26da71fcfe75fe0f3320e1a82bdcc.tar.gz bcm5719-llvm-3087c96348e26da71fcfe75fe0f3320e1a82bdcc.zip | |
Change -ffp-contract=fast test to run on Aarch64
(I don't have powerpc enabled in my build and I am changing
how -ffp-contract=fast works.)
llvm-svn: 298468
Diffstat (limited to 'clang/test/CodeGen')
| -rw-r--r-- | clang/test/CodeGen/ffp-contract-option.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/ffp-contract-option.c b/clang/test/CodeGen/ffp-contract-option.c index 61913b0aa33..52b75079594 100644 --- a/clang/test/CodeGen/ffp-contract-option.c +++ b/clang/test/CodeGen/ffp-contract-option.c @@ -1,8 +1,8 @@ -// RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=powerpc-apple-darwin10 -S -o - %s | FileCheck %s -// REQUIRES: powerpc-registered-target +// RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=aarch64-apple-darwin -S -o - %s | FileCheck %s +// REQUIRES: aarch64-registered-target float fma_test1(float a, float b, float c) { -// CHECK: fmadds +// CHECK: fmadd float x = a * b; float y = x + c; return y; |

