[llvm] [ARM] Change the type of CC and VCC code in `splitMnemonic`. (PR #83413)
Alfie Richards via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 29 07:50:02 PST 2024
================
@@ -6340,7 +6340,7 @@ StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
unsigned CC = ARMCondCodeFromString(Mnemonic.substr(Mnemonic.size()-2));
if (CC != ~0U) {
Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
- PredicationCode = CC;
+ PredicationCode = (ARMCC::CondCodes)CC;
----------------
AlfieRichardsArm wrote:
The anchor link really changes the meaning of that link (:
I'll get a quick fix in
https://github.com/llvm/llvm-project/pull/83413
More information about the llvm-commits
mailing list