blob: 6f98b843274649c38ea305a863a2cc317f413b35 [file] [log] [blame]
Michael Ilseman7a167ee2012-12-04 00:36:06 +00001// RUN: %clang_cc1 -ffast-math -emit-llvm -o - %s | FileCheck %s
Michael Ilseman43e17ad2012-12-10 18:48:08 +00002float f0, f1, f2;
Michael Ilseman7a167ee2012-12-04 00:36:06 +00003
4void foo(void) {
David Blaikieea3e51d2015-06-29 17:29:50 +00005 // CHECK-LABEL: define {{.*}}void @foo()
Michael Ilseman7a167ee2012-12-04 00:36:06 +00006
7 // CHECK: fadd fast
8 f0 = f1 + f2;
9
10 // CHECK: ret
11}