[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / fp-contract-on-asm.c
blob01a1bd14a06218cd1fae3609691172585fe0f4e9
1 // RUN: %clang_cc1 -O3 -triple=aarch64-apple-ios -S -o - %s | FileCheck %s
2 // REQUIRES: aarch64-registered-target
4 float fma_test1(float a, float b, float c) {
5 #pragma STDC FP_CONTRACT ON
6 // CHECK-LABEL: fma_test1:
7 // CHECK: fmadd
8 float x = a * b + c;
9 return x;
12 float fma_test2(float a, float b, float c) {
13 // CHECK-LABEL: fma_test2:
14 // CHECK: fmul
15 // CHECK: fadd
16 float x = a * b + c;
17 return x;