[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:
Wang Pengcheng 2023-09-12 11:24:30 +08:00 committed by GitHub
parent 72f6abb9bc
commit 94a75294ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: