]> granicus.if.org Git - clang/commitdiff
Now that mm_malloc.h was rewritten to *not* include errno.h (see
authorBill Wendling <isanbard@gmail.com>
Tue, 19 Oct 2010 20:08:12 +0000 (20:08 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 19 Oct 2010 20:08:12 +0000 (20:08 +0000)
http://llvm.org/viewvc/llvm-project?rev=116771&view=rev) we can get rid of these
hacks.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116853 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/mmx-builtins.c
test/CodeGen/vector.c
test/Headers/c89.c

index 7934e77890b31df37b8eaa18b5f357e5fd868fa0..a46601f93c3edcfb4b0d0735f3078ce104c3de35 100644 (file)
@@ -1,9 +1,5 @@
 // RUN: %clang_cc1 %s -O3 -triple=x86_64-apple-darwin -target-feature +ssse3 -S -o - | FileCheck %s
 
-// FIXME: Disable inclusion of mm_malloc.h, our current implementation is broken
-// on win32 since we don't generally know how to find errno.h.
-#define __MM_MALLOC_H
-
 #include <tmmintrin.h>
 
 __m64 test1(__m64 a, __m64 b) {
index 3fa5f1441d2fd496117e9d554698e85f05123b40..099867732bd3cf10e62becc0e78106dc98cb8046 100644 (file)
@@ -18,11 +18,6 @@ void test3 ( vec4* a, char b, float c ) {
   (*a)[b] = c;
 }
 
-
-
-// Don't include mm_malloc.h, it's system specific.
-#define __MM_MALLOC_H
-
 #include <mmintrin.h>
 
 int test4(int argc, char *argv[]) {
index 9e01ff9297b86e8a33a0822b3b52ed3bd00fba8b..618f11510d4020b5316de16808c24ea2883f5c5e 100644 (file)
@@ -1,10 +1,5 @@
 // RUN: %clang -ccc-host-triple i386-apple-darwin10 -fsyntax-only -Xclang -verify -std=c89 %s
 
-// FIXME: Disable inclusion of mm_malloc.h, our current implementation is broken
-// on win32 since we don't generally know how to find errno.h.
-
-#define __MM_MALLOC_H
-
 // PR6658
 #include <xmmintrin.h>