From: Chris Lattner Date: Sun, 18 Nov 2007 18:26:45 +0000 (+0000) Subject: fix bogus test that the more strict lexer is finding. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ef6c875dfa325b775e578a3704bbe360db953138;p=oota-llvm.git fix bogus test that the more strict lexer is finding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44216 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 }