David Chisnall | 843cc5a | 2012-01-06 12:20:19 +0000 | [diff] [blame] | 1 | // 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 | |||||
6 | double | ||||
7 | cos(double x) | ||||
8 | { | ||||
9 | printf("ok\n"); | ||||
10 | exit(0); | ||||
11 | } | ||||
12 | |||||
13 | int | ||||
14 | main(int argc, char *argv[]) | ||||
15 | { | ||||
16 | cos(1); // CHECK: cos | ||||
17 | printf("not ok\n"); | ||||
18 | abort(); | ||||
19 | } | ||||
20 |