From 97abba5b6fbc18c393972f4ed4dca453a5991161 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 31 Oct 2009 14:12:53 +0000 Subject: Fix 80-column violation. llvm-svn: 85653 --- llvm/lib/CodeGen/MachineFunction.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/MachineFunction.cpp') diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index eeb7f215663..0835a5cb426 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/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; } -- cgit v1.2.3