diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-04-10 23:09:00 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-04-10 23:09:00 +0000 |
commit | 01e446be51ef61f9e0c8b58e2255d4d1a1439028 (patch) | |
tree | 48d397c52c8d87b535c257d996de6b8405087bbd | |
parent | 1fd14031838e3eeae0f047f9143b8e09266e4e94 (diff) |
get rid of stdio.h include in testcase
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179237 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/mips-inline-asm-modifiers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/mips-inline-asm-modifiers.c b/test/CodeGen/mips-inline-asm-modifiers.c index 01b2453f98..9a0abb7ff5 100644 --- a/test/CodeGen/mips-inline-asm-modifiers.c +++ b/test/CodeGen/mips-inline-asm-modifiers.c @@ -4,7 +4,7 @@ // This checks that the frontend will accept inline asm operand modifiers -#include "stdio.h" +int printf(const char*, ...); // CHECK: %{{[0-9]+}} = call i32 asm ".set noreorder;\0Alw $0,$1;\0A.set reorder;\0A", "=r,*m"(i32* getelementptr inbounds ([8 x i32]* @b, i32 {{[0-9]+}}, i32 {{[0-9]+}})) #2, !srcloc !0 // CHECK: %{{[0-9]+}} = call i32 asm "lw $0,${1:D};\0A", "=r,*m"(i32* getelementptr inbounds ([8 x i32]* @b, i32 {{[0-9]+}}, i32 {{[0-9]+}})) #2, !srcloc !1 |