Fix 80-column violation.

llvm-svn: 85653
This commit is contained in:
Dan Gohman 2009-10-31 14:12:53 +00:00
parent dec076697a
commit 9c7c19f264

View File

@ -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;
}