aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-10-31 14:12:53 +0000
committerDan Gohman <gohman@apple.com>2009-10-31 14:12:53 +0000
commit60d686df5471f7156a6b8afa5859346272216c56 (patch)
tree64f6e011b4fc9f69471bc76cef647d149bf00a19 /lib/CodeGen/MachineFunction.cpp
parentcdfa666c309ddb3dc655f805fb3d47205c4182d0 (diff)
Fix 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85653 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r--lib/CodeGen/MachineFunction.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp
index eeb7f21566..0835a5cb42 100644
--- a/lib/CodeGen/MachineFunction.cpp
+++ b/lib/CodeGen/MachineFunction.cpp
@@ -612,7 +612,8 @@ static bool CanShareConstantPoolEntry(Constant *A, Constant *B,
if (AV->getType()->getNumElements() != BV->getType()->getNumElements())
return false;
for (unsigned i = 0, e = AV->getType()->getNumElements(); i != e; ++i)
- if (!CanShareConstantPoolEntry(AV->getOperand(i), BV->getOperand(i), TD))
+ if (!CanShareConstantPoolEntry(AV->getOperand(i),
+ BV->getOperand(i), TD))
return false;
return true;
}