mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
[GVN] Format variable name.
Local variables need to start with an upper case letter. llvm-svn: 217133
This commit is contained in:
parent
72e28fe98a
commit
ad00c803d8
@ -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…
Reference in New Issue
Block a user