aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Instrumentation
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-09-14 22:35:49 +0000
committerBill Wendling <isanbard@gmail.com>2012-09-14 22:35:49 +0000
commitec3fc2eac0e9203dd1094b9ce458e8c1b42b832f (patch)
tree870f124ab410b646a934441ee37ed6c4d2d4b574 /lib/Transforms/Instrumentation
parent48b6a79b2d367ea2e8cf014d8af9d573889d2f7f (diff)
downloadexternal_llvm-ec3fc2eac0e9203dd1094b9ce458e8c1b42b832f.zip
external_llvm-ec3fc2eac0e9203dd1094b9ce458e8c1b42b832f.tar.gz
external_llvm-ec3fc2eac0e9203dd1094b9ce458e8c1b42b832f.tar.bz2
Remove comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163945 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation')
-rw-r--r--lib/Transforms/Instrumentation/GCOVProfiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/lib/Transforms/Instrumentation/GCOVProfiling.cpp
index 5d4a1b3..06c1ec5 100644
--- a/lib/Transforms/Instrumentation/GCOVProfiling.cpp
+++ b/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();