summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-18 18:26:45 +0000
committerChris Lattner <sabre@nondot.org>2007-11-18 18:26:45 +0000
commitef6c875dfa325b775e578a3704bbe360db953138 (patch)
treef5f8ef92e8f29b494889d9e97ed2ff53176f7676
parentd343c6b70ec03b357d42e47ce7c00b3c3cb78efd (diff)
downloadllvm-ef6c875dfa325b775e578a3704bbe360db953138.tar.gz
llvm-ef6c875dfa325b775e578a3704bbe360db953138.tar.bz2
llvm-ef6c875dfa325b775e578a3704bbe360db953138.tar.xz
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
-rw-r--r--test/CodeGen/X86/fast-cc-pass-in-regs.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fast-cc-pass-in-regs.ll b/test/CodeGen/X86/fast-cc-pass-in-regs.ll
index 67c22fff27..c8621a7780 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 ) ; <i64> [#uses=1]
+ %X = call x86_fastcallcc i64 @callee( i64 4294967299 ) ; <i64> [#uses=1]
ret i64 %X
}