diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-12-13 20:13:48 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-12-13 20:13:48 +0000 |
commit | f10154010ec01a6965f86e8c136db79732c92eee (patch) | |
tree | 07df141bb90fc1cc40154c3b97d8110943191c70 /lib/Target/ARM/AsmParser | |
parent | 485d8bf7e5537a19d3ad63e65f841bd7e63d4d06 (diff) | |
download | external_llvm-f10154010ec01a6965f86e8c136db79732c92eee.zip external_llvm-f10154010ec01a6965f86e8c136db79732c92eee.tar.gz external_llvm-f10154010ec01a6965f86e8c136db79732c92eee.tar.bz2 |
ARM add some more pre-UAL VFP mnemonics for convenience when porting old code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146508 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmParser')
-rw-r--r-- | lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 72da793..35251f0 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -4308,6 +4308,7 @@ StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic, Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" || Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" || Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" || + Mnemonic == "fsts" || (Mnemonic == "movs" && isThumb()))) { Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1); CarrySetting = true; |