diff options
author | Bradley Smith <bradley.smith@arm.com> | 2016-01-25 11:24:47 +0000 |
---|---|---|
committer | Bradley Smith <bradley.smith@arm.com> | 2016-01-25 11:24:47 +0000 |
commit | fed3e4ac00a0f8e8d022cec6957d5629c142ea5a (patch) | |
tree | 4dcba6919ae3df0541750dc0e8f2443da709e9f5 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | 655822ab7ec7c5acb45f2bf18662b6cd603b0397 (diff) | |
download | llvm-fed3e4ac00a0f8e8d022cec6957d5629c142ea5a.zip llvm-fed3e4ac00a0f8e8d022cec6957d5629c142ea5a.tar.gz llvm-fed3e4ac00a0f8e8d022cec6957d5629c142ea5a.tar.bz2 |
[ARM] Add ARMv8-M security extension instructions to ARMv8-M Baseline/Mainline
This patch was originally committed as r257883, but was reverted due to windows
failures. The cause of these failures has been fixed under r258677, hence
re-committing the original patch.
llvm-svn: 258681
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 5e6d40e..3fe00a6 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -5305,7 +5305,8 @@ StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic, Mnemonic == "vcvta" || Mnemonic == "vcvtn" || Mnemonic == "vcvtp" || Mnemonic == "vcvtm" || Mnemonic == "vrinta" || Mnemonic == "vrintn" || Mnemonic == "vrintp" || Mnemonic == "vrintm" || Mnemonic == "hvc" || - Mnemonic.startswith("vsel") || Mnemonic == "vins" || Mnemonic == "vmovx") + Mnemonic.startswith("vsel") || Mnemonic == "vins" || Mnemonic == "vmovx" || + Mnemonic == "bxns" || Mnemonic == "blxns") return Mnemonic; // First, split out any predication code. Ignore mnemonics we know aren't |