[llvm-commits] [llvm] r44216 - /llvm/trunk/test/CodeGen/X86/fast-cc-pass-in-regs.ll
Chris Lattner
sabre at nondot.org
Sun Nov 18 10:26:45 PST 2007
Author: lattner
Date: Sun Nov 18 12:26:45 2007
New Revision: 44216
URL: http://llvm.org/viewvc/llvm-project?rev=44216&view=rev
Log:
fix bogus test that the more strict lexer is finding.
Modified:
llvm/trunk/test/CodeGen/X86/fast-cc-pass-in-regs.ll
Modified: llvm/trunk/test/CodeGen/X86/fast-cc-pass-in-regs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/fast-cc-pass-in-regs.ll?rev=44216&r1=44215&r2=44216&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/fast-cc-pass-in-regs.ll (original)
+++ llvm/trunk/test/CodeGen/X86/fast-cc-pass-in-regs.ll Sun Nov 18 12:26:45 2007
@@ -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
}
More information about the llvm-commits
mailing list