diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-08-21 13:39:38 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-08-21 13:39:38 +0000 |
commit | 1e33f4fd373eefe026233b9b3cb83577a407757a (patch) | |
tree | 7bffb17d988276a7208019a4af304bab953649ad | |
parent | dc015e5398d3cdd7baaa5d9a0330aaeafdf1a7c3 (diff) |
Avoid including mm_malloc.h in a cc1 test, it pulls in system headers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111738 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/vector.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGen/vector.c b/test/CodeGen/vector.c index bfce0e4e05..3fa5f1441d 100644 --- a/test/CodeGen/vector.c +++ b/test/CodeGen/vector.c @@ -20,6 +20,8 @@ void test3 ( vec4* a, char b, float c ) { +// Don't include mm_malloc.h, it's system specific. +#define __MM_MALLOC_H #include <mmintrin.h> |