[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / nomathbuiltin.c
blob35e7c567e68d2732a661f8b44fbcb3f1d6b4dffe
1 // RUN: %clang_cc1 -fno-math-builtin -emit-llvm -o - %s | FileCheck %s
3 // Check that the -fno-math-builtin option for -cc1 is working properly.
6 double pow(double, double);
8 double foo(double a, double b) {
9 return pow(a, b);
10 // CHECK: call {{.*}}double @pow