diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-09-14 22:35:49 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-09-14 22:35:49 +0000 |
commit | 8d26bc38f54eeb877942cefd865cc2000479be2b (patch) | |
tree | 6a6060491481ca120ad59cb9ee5e1651d70a799c | |
parent | 21e27ce26402cb4f414a436af826b5fb2bb486a1 (diff) | |
download | bcm5719-llvm-8d26bc38f54eeb877942cefd865cc2000479be2b.tar.gz bcm5719-llvm-8d26bc38f54eeb877942cefd865cc2000479be2b.zip |
Remove comment.
llvm-svn: 163945
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp index 5d4a1b30f57..06c1ec58b32 100644 --- a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp @@ -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(); |