mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-01 03:33:42 +00:00
[GVN] Format variable name.
Local variables need to start with an upper case letter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a41fd4f9c2
commit
b4f4dd4439
@ -2644,8 +2644,8 @@ bool GVN::iterateOnFunction(Function &F) {
|
||||
//
|
||||
std::vector<BasicBlock *> BBVect;
|
||||
BBVect.reserve(256);
|
||||
for (DomTreeNode *x : depth_first(DT->getRootNode()))
|
||||
BBVect.push_back(x->getBlock());
|
||||
for (DomTreeNode *X : depth_first(DT->getRootNode()))
|
||||
BBVect.push_back(X->getBlock());
|
||||
|
||||
for (std::vector<BasicBlock *>::iterator I = BBVect.begin(), E = BBVect.end();
|
||||
I != E; I++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user