forked from OSchip/llvm-project
Follow up and fix for rL362064
Fix the misleadingly indentation introduced in rL362064. This will get rid of the compiler warning, and it was actually a bug. This change will be used and tested in D62669. llvm-svn: 362211
This commit is contained in:
parent
efcd3c0009
commit
3cac8d258a
|
@ -3813,10 +3813,11 @@ Error GlobalISelEmitter::importDefaultOperandRenderers(
|
|||
if (const DagInit *DefaultDagOp = dyn_cast<DagInit>(DefaultOp)) {
|
||||
if (const DefInit *DefaultDagOperator =
|
||||
dyn_cast<DefInit>(DefaultDagOp->getOperator())) {
|
||||
if (DefaultDagOperator->getDef()->isSubClassOf("ValueType"))
|
||||
if (DefaultDagOperator->getDef()->isSubClassOf("ValueType")) {
|
||||
OpTyOrNone = MVTToLLT(getValueType(
|
||||
DefaultDagOperator->getDef()));
|
||||
DefaultOp = DefaultDagOp->getArg(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue