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
This commit is contained in:
Chris Lattner 2007-11-18 18:26:45 +00:00
parent d343c6b70e
commit ef6c875dfa

View File

@ -5,7 +5,7 @@
declare x86_fastcallcc i64 @callee(i64)
define i64 @caller() {
%X = callx86_fastcallcc i64 @callee( i64 4294967299 ) ; <i64> [#uses=1]
%X = call x86_fastcallcc i64 @callee( i64 4294967299 ) ; <i64> [#uses=1]
ret i64 %X
}