blob: 4a513589ef4c14a3193922a77f3158a34d7a10c7 [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) {
Stephen Lin43622612013-08-15 06:47:53 +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}