mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-09 05:47:13 +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())
|
if (AV->getType()->getNumElements() != BV->getType()->getNumElements())
|
||||||
return false;
|
return false;
|
||||||
for (unsigned i = 0, e = AV->getType()->getNumElements(); i != e; ++i)
|
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 false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user