blob: ff1c1924817ee252e8c1e071f5f09e34fcf859d1 [file] [log] [blame]
// RUN: %clang_cc1 -fno-builtin -emit-llvm %s -o - | FileCheck %s
//
// Check that -fno-builtin prevents us from constant-folding through builtins
// (PR11711)
double
cos(double x)
{
printf("ok\n");
exit(0);
}
int
main(int argc, char *argv[])
{
cos(1); // CHECK: cos
printf("not ok\n");
abort();
}