mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Allow non zero_reg explicit values for OptionalDefOperands in aliases.
llvm-svn: 138073
This commit is contained in:
parent
8952a2e87e
commit
4e811b51eb
@ -424,6 +424,13 @@ bool CodeGenInstAlias::tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
|
||||
|
||||
// Handle explicit registers.
|
||||
if (ADI && ADI->getDef()->isSubClassOf("Register")) {
|
||||
if (InstOpRec->isSubClassOf("OptionalDefOperand")) {
|
||||
DagInit *DI = InstOpRec->getValueAsDag("MIOperandInfo");
|
||||
// The operand info should only have a single (register) entry. We
|
||||
// want the register class of it.
|
||||
InstOpRec = dynamic_cast<DefInit*>(DI->getArg(0))->getDef();
|
||||
}
|
||||
|
||||
if (InstOpRec->isSubClassOf("RegisterOperand"))
|
||||
InstOpRec = InstOpRec->getValueAsDef("RegClass");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user