Reflow this to be easier to read.

llvm-svn: 187459
This commit is contained in:
Eric Christopher 2013-07-30 22:50:44 +00:00
parent 62c0ac0acf
commit 029af15086
1 changed files with 5 additions and 7 deletions

View File

@ -6146,13 +6146,11 @@ void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) {
// Add information to the INLINEASM node to know that this register is
// set.
OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
InlineAsm::Kind_RegDefEarlyClobber :
InlineAsm::Kind_RegDef,
false,
0,
DAG,
AsmNodeOperands);
OpInfo.AssignedRegs
.AddInlineAsmOperands(OpInfo.isEarlyClobber
? InlineAsm::Kind_RegDefEarlyClobber
: InlineAsm::Kind_RegDef,
false, 0, DAG, AsmNodeOperands);
break;
}
case InlineAsm::isInput: {