From: Bill Wendling Date: Fri, 14 Sep 2012 22:35:49 +0000 (+0000) Subject: Remove comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ec3fc2eac0e9203dd1094b9ce458e8c1b42b832f;p=oota-llvm.git Remove comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163945 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/lib/Transforms/Instrumentation/GCOVProfiling.cpp index 5d4a1b30f57..06c1ec58b32 100644 --- a/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/lib/Transforms/Instrumentation/GCOVProfiling.cpp @@ -774,7 +774,7 @@ insertFlush(ArrayRef > 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();