projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdfa666
)
Fix 80-column violation.
author
Dan Gohman
<gohman@apple.com>
Sat, 31 Oct 2009 14:12:53 +0000
(14:12 +0000)
committer
Dan Gohman
<gohman@apple.com>
Sat, 31 Oct 2009 14:12:53 +0000
(14:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85653
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineFunction.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineFunction.cpp
b/lib/CodeGen/MachineFunction.cpp
index eeb7f21566330a69d54687720a64c3c41d4da870..0835a5cb4269bd80b2b6846abac75f7ae481a253 100644
(file)
--- a/
lib/CodeGen/MachineFunction.cpp
+++ b/
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;
}