blob: ff1c1924817ee252e8c1e071f5f09e34fcf859d1 [file] [log] [blame]
David Chisnall843cc5a2012-01-06 12:20:19 +00001// RUN: %clang_cc1 -fno-builtin -emit-llvm %s -o - | FileCheck %s
2//
3// Check that -fno-builtin prevents us from constant-folding through builtins
4// (PR11711)
5
6double
7cos(double x)
8{
9 printf("ok\n");
10 exit(0);
11}
12
13int
14main(int argc, char *argv[])
15{
16 cos(1); // CHECK: cos
17 printf("not ok\n");
18 abort();
19}
20