diff options
Diffstat (limited to 'test/FrontendC/2004-02-20-Builtins.c')
-rw-r--r-- | test/FrontendC/2004-02-20-Builtins.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/FrontendC/2004-02-20-Builtins.c b/test/FrontendC/2004-02-20-Builtins.c new file mode 100644 index 0000000..0c9ac7c --- /dev/null +++ b/test/FrontendC/2004-02-20-Builtins.c @@ -0,0 +1,8 @@ +// RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin + +#include <math.h> + +void zsqrtxxx(float num) { + num = sqrt(num); +} + |