diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-12-13 15:31:28 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-12-13 15:31:28 +0000 |
commit | 9578504165eccfbdea4bc6eddfb5c41f598bafe2 (patch) | |
tree | 012c2075eb453f37e1e6c94f89e7c55c7d9f7fc6 | |
parent | 1c212a08f693e9ae07ef477ec51e9dd3a88843da (diff) |
stdlib.h is the wrong header for printf, and introduces test-breaking definitions of inlines on Linux
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60981 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/mmintrin-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/mmintrin-test.c b/test/CodeGen/mmintrin-test.c index 97faae75a6..6d68a75ff2 100644 --- a/test/CodeGen/mmintrin-test.c +++ b/test/CodeGen/mmintrin-test.c @@ -4,7 +4,7 @@ // RUN: grep define %t | count 1 #include <mmintrin.h> -#include <stdlib.h> +#include <stdio.h> int main(int argc, char *argv[]) { int array[16] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 }; |