]> granicus.if.org Git - clang/commitdiff
Removed math.h include, as Windows math.h has a compile error.
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>
Thu, 15 Oct 2009 00:39:58 +0000 (00:39 +0000)
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>
Thu, 15 Oct 2009 00:39:58 +0000 (00:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84160 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/builtins-powi.c
test/CodeGen/builtins.c
test/CodeGen/const-init.c
test/CodeGen/mandel.c

index 5b413a889502e4dae68e9244b48c1062c893e78c..57fa81a3ad126b8bd65161ecb9b887092783c5ef 100644 (file)
@@ -3,7 +3,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <math.h>
 
 void test(long double a, int b) {
   printf("%Lf**%d: %08x %08x %016Lx\n", 
index 165db9c267539bd7bd26d1e61d68d2a97d96c98c..35a588ec88bf64b473968c936c23a6cfeca08ca8 100644 (file)
@@ -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);
index 29e9c556152719f781abf57980050bd4c1e6d95d..e25da9c6eba047d7eff5d57f3fe9188b30aaf198 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: clang-cc -triple i386-pc-linux-gnu -verify -emit-llvm -o - %s | FileCheck %s
 
-#include <stdint.h>
+typedef __INTPTR_TYPE__          intptr_t;
 
 // Brace-enclosed string array initializers
 char a[] = { "asdf" };
index 6f46ee407f5cb61827716124fc8392ad40e4e12e..27993f0559e9951fb0176a1dc12bad2118db74ec 100644 (file)
@@ -25,8 +25,6 @@ int main() { return 0; }
 
 #define I 1.0iF
 
-#include <math.h>
-
 #include <stdio.h>
 
 volatile double __complex__ accum;