From bef568f3f8e028559f46a5131f623defee1fc3ac Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 18 Nov 2007 18:26:45 +0000 Subject: [PATCH] fix bogus test that the more strict lexer is finding. llvm-svn: 44216 --- test/CodeGen/X86/fast-cc-pass-in-regs.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/fast-cc-pass-in-regs.ll b/test/CodeGen/X86/fast-cc-pass-in-regs.ll index 67c22fff275..c8621a7780b 100644 --- a/test/CodeGen/X86/fast-cc-pass-in-regs.ll +++ b/test/CodeGen/X86/fast-cc-pass-in-regs.ll @@ -5,7 +5,7 @@ declare x86_fastcallcc i64 @callee(i64) define i64 @caller() { - %X = callx86_fastcallcc i64 @callee( i64 4294967299 ) ; [#uses=1] + %X = call x86_fastcallcc i64 @callee( i64 4294967299 ) ; [#uses=1] ret i64 %X }