[llvm-commits] [llvm] r85653 - /llvm/trunk/lib/CodeGen/MachineFunction.cpp
Dan Gohman
gohman at apple.com
Sat Oct 31 07:12:54 PDT 2009
Author: djg
Date: Sat Oct 31 09:12:53 2009
New Revision: 85653
URL: http://llvm.org/viewvc/llvm-project?rev=85653&view=rev
Log:
Fix 80-column violation.
Modified:
llvm/trunk/lib/CodeGen/MachineFunction.cpp
Modified: llvm/trunk/lib/CodeGen/MachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineFunction.cpp?rev=85653&r1=85652&r2=85653&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineFunction.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineFunction.cpp Sat Oct 31 09:12:53 2009
@@ -612,7 +612,8 @@
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;
}
More information about the llvm-commits
mailing list