1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Remove comment.

llvm-svn: 163945
This commit is contained in:
Bill Wendling 2012-09-14 22:35:49 +00:00
parent c05c0c5f06
commit a1af1f6f9f

View File

@ -774,7 +774,7 @@ insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) {
I != E; ++I) {
GlobalVariable *GV = I->first;
Constant *Null = Constant::getNullValue(GV->getType()->getElementType());
Builder.CreateStore(Null, GV);//Builder.CreateConstGEP2_64(GV, 0, 0));
Builder.CreateStore(Null, GV);
}
Type *RetTy = FlushF->getReturnType();