aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLLexer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-18 18:43:24 +0000
committerChris Lattner <sabre@nondot.org>2007-11-18 18:43:24 +0000
commit4ce0df610879e82d9853c6a38a75b1883feaee06 (patch)
treea0b5d1b5a3417bacc737a9fbf6ebf8e7267a266e /lib/AsmParser/LLLexer.cpp
parentb28a6dce6d57e05aa25520915726f82d2b3dc08d (diff)
autoupgrade files that use callfoo as call foo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLLexer.cpp')
-rw-r--r--lib/AsmParser/LLLexer.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp
index 25b532fb7b..27798be618 100644
--- a/lib/AsmParser/LLLexer.cpp
+++ b/lib/AsmParser/LLLexer.cpp
@@ -617,12 +617,20 @@ int LLLexer::LexIdentifier() {
}
}
- // Finally, if this is "cc1234", return this as just "cc".
+ // If this is "cc1234", return this as just "cc".
if (TokStart[0] == 'c' && TokStart[1] == 'c') {
CurPtr = TokStart+2;
return CC_TOK;
}
+ // If this starts with "call", return it as CALL. This is to support old
+ // broken .ll files. FIXME: remove this with LLVM 3.0.
+ if (CurPtr-TokStart > 4 && !memcmp(TokStart, "call", 4)) {
+ CurPtr = TokStart+4;
+ llvmAsmlval.OtherOpVal = Instruction::Call;
+ return CALL;
+ }
+
// Finally, if this isn't known, return just a single character.
CurPtr = TokStart+1;
return TokStart[0];