mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-02 07:16:29 +00:00
[InlineAsm] Add constraint A to getMemConstraintName (#65292)
We will get an assertion of 'Unknown memory constraint' when we dump `MachineOperand` with constraint A.
This commit is contained in:
parent
72f6abb9bc
commit
94a75294ce
@ -457,6 +457,8 @@ public:
|
||||
return "o";
|
||||
case InlineAsm::Constraint_v:
|
||||
return "v";
|
||||
case InlineAsm::Constraint_A:
|
||||
return "A";
|
||||
case InlineAsm::Constraint_Q:
|
||||
return "Q";
|
||||
case InlineAsm::Constraint_R:
|
||||
|
Loading…
x
Reference in New Issue
Block a user