summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorJack Carter <jack.carter@imgtec.com>2013-11-20 00:32:32 +0000
committerJack Carter <jack.carter@imgtec.com>2013-11-20 00:32:32 +0000
commitd4b22dcbf341168b2a8a6a67ae1eb9d66498db2c (patch)
treefa18af0cc23712a6bac96d3d7c5fa842f7fbacec /llvm/lib/CodeGen/SelectionDAG
parent92ab2985da1b8e66020dfebd2173d06ff4ac22f5 (diff)
downloadbcm5719-llvm-d4b22dcbf341168b2a8a6a67ae1eb9d66498db2c.tar.gz
bcm5719-llvm-d4b22dcbf341168b2a8a6a67ae1eb9d66498db2c.zip
long line correction
llvm-svn: 195179
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 15f2ee249e1..91cb125dc89 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -404,7 +404,8 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
for (unsigned i = 0, e = FuncInfo->ArgDbgValues.size(); i != e; ++i) {
MachineInstr *MI = FuncInfo->ArgDbgValues[e-i-1];
bool hasFI = MI->getOperand(0).isFI();
- unsigned Reg = hasFI ? TRI.getFrameRegister(*MF) : MI->getOperand(0).getReg();
+ unsigned Reg =
+ hasFI ? TRI.getFrameRegister(*MF) : MI->getOperand(0).getReg();
if (TargetRegisterInfo::isPhysicalRegister(Reg))
EntryMBB->insert(EntryMBB->begin(), MI);
else {
OpenPOWER on IntegriCloud