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 | 0653066e2bb7ab86b3b8a2235741db9577e8fce9 (patch) | |
tree | a4ccadaa1af898d7e8412bfa18a2bf160b11a63f /test/CodeGen/const-init.c | |
parent | 3bc4ffd71b3ebb1e8efb7234a135c30cf815c404 (diff) |
Removed math.h include, as Windows math.h has a compile error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/const-init.c')
-rw-r--r-- | test/CodeGen/const-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/const-init.c b/test/CodeGen/const-init.c index 29e9c55615..e25da9c6eb 100644 --- a/test/CodeGen/const-init.c +++ b/test/CodeGen/const-init.c @@ -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" }; |