diff options
author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2009-10-15 00:39:58 +0000 |
---|---|---|
committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2009-10-15 00:39:58 +0000 |
commit | 3254182bfa60bac54809bd3b515b89548dbee2e4 (patch) | |
tree | f572ad22fd27a831a87761828b70540c9d7a39c8 /clang/test/CodeGen/builtins.c | |
parent | fcb27ad54cb1591a6365b24cc2f1e3eea5f914fa (diff) | |
download | bcm5719-llvm-3254182bfa60bac54809bd3b515b89548dbee2e4.tar.gz bcm5719-llvm-3254182bfa60bac54809bd3b515b89548dbee2e4.zip |
Removed math.h include, as Windows math.h has a compile error.
llvm-svn: 84160
Diffstat (limited to 'clang/test/CodeGen/builtins.c')
-rw-r--r-- | clang/test/CodeGen/builtins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGen/builtins.c b/clang/test/CodeGen/builtins.c index 165db9c2675..35a588ec88b 100644 --- a/clang/test/CodeGen/builtins.c +++ b/clang/test/CodeGen/builtins.c @@ -2,7 +2,6 @@ // RUN: not grep __builtin %t #include <stdio.h> -#include <math.h> void p(char *str, int x) { printf("%s: %d\n", str, x); @@ -118,7 +117,7 @@ int main() { -void strcat() {} +char *strcat(char *, char const *) {} void foo() { __builtin_strcat(0, 0); |