summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2012-01-07 01:22:23 +0000
committerDevang Patel <dpatel@apple.com>2012-01-07 01:22:23 +0000
commitb78307fc58025713fd98c8414fa8f29720f37a76 (patch)
tree43420678c91528b41d04e99fa1ea482f30640d52 /utils
parentee98aa87434d9d49a8e4dab41d873888ac9c4805 (diff)
downloadllvm-b78307fc58025713fd98c8414fa8f29720f37a76.tar.gz
llvm-b78307fc58025713fd98c8414fa8f29720f37a76.tar.bz2
llvm-b78307fc58025713fd98c8414fa8f29720f37a76.tar.xz
Eliminate an error check that may not work with all asm syntax variants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/AsmMatcherEmitter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/TableGen/AsmMatcherEmitter.cpp b/utils/TableGen/AsmMatcherEmitter.cpp
index d2f2748b03..3576cc93a6 100644
--- a/utils/TableGen/AsmMatcherEmitter.cpp
+++ b/utils/TableGen/AsmMatcherEmitter.cpp
@@ -740,7 +740,8 @@ void MatchableInfo::TokenizeAsmString(const AsmMatcherInfo &Info) {
throw TGError(TheDef->getLoc(),
"Instruction '" + TheDef->getName() + "' has no tokens");
Mnemonic = AsmOperands[0].Token;
- if (Mnemonic[0] == '$' || getSingletonRegisterForAsmOperand(0, Info))
+ // FIXME : Check and raise an error if it is register.
+ if (Mnemonic[0] == '$')
throw TGError(TheDef->getLoc(),
"Invalid instruction mnemonic '" + Mnemonic.str() + "'!");