mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-03 02:43:51 +00:00
Fix 80-column violation.
llvm-svn: 85653
This commit is contained in:
parent
dec076697a
commit
9c7c19f264
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user