mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Mark predicate operands as such in operand info.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31483 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f6e8e6bace
commit
d9a7f4db5f
@ -100,6 +100,10 @@ InstrInfoEmitter::GetOperandInfo(const CodeGenInstruction &Inst) {
|
||||
// Ptr value whose register class is resolved via callback.
|
||||
if (OpR && OpR->getName() == "ptr_rc")
|
||||
Res += "|M_LOOK_UP_PTR_REG_CLASS";
|
||||
|
||||
// Predicate operands.
|
||||
if (j == 0 && Inst.OperandList[i].Rec->isSubClassOf("PredicateOperand"))
|
||||
Res += "|M_PREDICATE_OPERAND";
|
||||
|
||||
// fill in constraint info.
|
||||
Res += ", " + Inst.OperandList[i].Constraint;
|
||||
|
Loading…
x
Reference in New Issue
Block a user