diff options
Diffstat (limited to 'test/CodeGen/ffp-contract-option.c')
-rw-r--r-- | test/CodeGen/ffp-contract-option.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/ffp-contract-option.c b/test/CodeGen/ffp-contract-option.c index 61913b0aa333..52b750795940 100644 --- a/test/CodeGen/ffp-contract-option.c +++ b/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; |