diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-19 22:51:03 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-19 22:51:03 +0000 |
commit | 2c3f70e5d4b4f179f21ed1b2ba14674f9d65c9b0 (patch) | |
tree | 6fcf97c24fbf2615899af5c300c4a5d81ed05186 /lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | deaa64546ea1d0922aa4671a05f13be3d7c9d53c (diff) |
Thumb assembly parsing and encoding for NEG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 258d692b12..6a14387640 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -2831,7 +2831,7 @@ getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet, Mnemonic == "umlal" || Mnemonic == "orr" || Mnemonic == "mvn" || Mnemonic == "rsb" || Mnemonic == "rsc" || Mnemonic == "orn" || Mnemonic == "sbc" || Mnemonic == "mla" || Mnemonic == "umull" || - Mnemonic == "eor" || Mnemonic == "smlal" || + Mnemonic == "eor" || Mnemonic == "smlal" || Mnemonic == "neg" || // FIXME: We need a better way. This really confused Thumb2 // parsing for 'mov'. (Mnemonic == "mov" && !isThumbOne())) { |