[clang] [llvm] [AArch64][clang][llvm] Add ACLE `stshh` atomic store builtin (PR #181386)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 4 10:54:16 PST 2026
================
@@ -1842,8 +1842,10 @@ def PHintInstOperand : AsmOperandClass {
def phint_op : Operand<i32> {
let ParserMatchClass = PHintInstOperand;
- let PrintMethod = "printPHintOp";
- let OperandType = "OPERAND_IMMEDIATE";
+ let PrintMethod = "printPHintOp";
+ let OperandType = "OPERAND_IMMEDIATE";
+ let MIOperandInfo = (ops i32imm);
----------------
CarolineConcatto wrote:
nit: can we do
let MIOperandInfo = (ops i32imm: $policy);
https://github.com/llvm/llvm-project/pull/181386
More information about the llvm-commits
mailing list