summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/fast-math.c
blob: 76cfbbd3654863dbe08e2f0f7cbb6c783f7ca23e (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -ffast-math -emit-llvm -o - %s | FileCheck %s
float f0, f1, f2;

void foo(void) {
  // CHECK: define void @foo()

  // CHECK: fadd fast
  f0 = f1 + f2;

  // CHECK: ret
}
OpenPOWER on IntegriCloud