summaryrefslogtreecommitdiff
path: root/test/CodeGen/fp-contract-on-asm.c
blob: 01a1bd14a06218cd1fae3609691172585fe0f4e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -O3 -triple=aarch64-apple-ios -S -o - %s | FileCheck %s
// REQUIRES: aarch64-registered-target

float fma_test1(float a, float b, float c) {
#pragma STDC FP_CONTRACT ON
// CHECK-LABEL: fma_test1:
// CHECK: fmadd
  float x = a * b + c;
  return x;
}

float fma_test2(float a, float b, float c) {
// CHECK-LABEL: fma_test2:
// CHECK: fmul
// CHECK: fadd
  float x = a * b + c;
  return x;
}