blob: 6ebd65a22c92be4b6961572bc5c812de2d64c41e [file] [log] [blame]
// RUN: %clang_cc1 -ffast-math -ffp-contract=fast -emit-llvm -o - %s | FileCheck %s
float f0, f1, f2;
void foo(void) {
// CHECK-LABEL: define {{.*}}void @foo()
// CHECK: fadd fast
f0 = f1 + f2;
// CHECK: ret
}