Remove comment.

llvm-svn: 163945
This commit is contained in:
Bill Wendling 2012-09-14 22:35:49 +00:00
parent 21e27ce264
commit 8d26bc38f5
1 changed files with 1 additions and 1 deletions

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();