summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-30 22:50:44 +0000
committerEric Christopher <echristo@gmail.com>2013-07-30 22:50:44 +0000
commitb0bee810e7f980ccb4c0ee56aed948716a51d0ab (patch)
tree320acc4eee4b7ea75014dac5a9e783d4fc00dfcf /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parent63a5619410cfb92add9f3d161d5faef80bd5794e (diff)
downloadllvm-b0bee810e7f980ccb4c0ee56aed948716a51d0ab.tar.gz
llvm-b0bee810e7f980ccb4c0ee56aed948716a51d0ab.tar.bz2
llvm-b0bee810e7f980ccb4c0ee56aed948716a51d0ab.tar.xz
Reflow this to be easier to read.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187459 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 7d87ea16f1..16ce8e3b12 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -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: {