Files
clang-p2996/clang/test/CodeGen/nomathbuiltin.c
Chad Rosier f662fb3dc8 Revert "[Driver] Make sure -fno-math-builtin option is being passed by the driver."
This reverts commit r258814.

llvm-svn: 258815
2016-01-26 16:16:53 +00:00

13 lines
265 B
C

// RUN: %clang_cc1 -fno-math-builtin -emit-llvm -o - %s | FileCheck %s
// Check that the -fno-math-builtin option for -cc1 is working properly.
double pow(double, double);
double foo(double a, double b) {
return pow(a, b);
// CHECK: call {{.*}}double @pow
}