diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-03-15 20:48:18 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-03-15 20:48:18 +0000 |
commit | d74560b170701344b1a68bb188a2886792097f74 (patch) | |
tree | b2191eec4b53272dfe890c1989130ad9a1316822 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | cecb34407f5587f57fe95f0ab30150ebfacdc3ba (diff) | |
download | bcm5719-llvm-d74560b170701344b1a68bb188a2886792097f74.tar.gz bcm5719-llvm-d74560b170701344b1a68bb188a2886792097f74.zip |
ARM aliases for pre-unified syntax fcmpz[sd] mnemonics.
rdar://11056647
llvm-svn: 152834
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index fe93a4c612f..af973e8c1f8 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -4603,7 +4603,7 @@ StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic, Mnemonic == "vrsqrts" || Mnemonic == "srs" || Mnemonic == "flds" || Mnemonic == "fmrs" || Mnemonic == "fsqrts" || Mnemonic == "fsubs" || Mnemonic == "fsts" || Mnemonic == "fcpys" || Mnemonic == "fdivs" || - Mnemonic == "fmuls" || Mnemonic == "fcmps" || + Mnemonic == "fmuls" || Mnemonic == "fcmps" || Mnemonic == "fcmpzs" || (Mnemonic == "movs" && isThumb()))) { Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1); CarrySetting = true; |