From: Yuchen Wu Date: Wed, 23 Oct 2013 20:35:00 +0000 (+0000) Subject: Fixed comment typo in GCOVProfiling.cpp X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d7da59004fc9262f33c96ad2736b36ff1235ce7b;p=oota-llvm.git Fixed comment typo in GCOVProfiling.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193268 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/lib/Transforms/Instrumentation/GCOVProfiling.cpp index f03b503c93e..4e9afeed430 100644 --- a/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/lib/Transforms/Instrumentation/GCOVProfiling.cpp @@ -598,7 +598,7 @@ bool GCOVProfiler::emitProfileArcs() { }; FTy = FunctionType::get(Builder.getVoidTy(), Params, false); - // Inialize the environment and register the local writeout and flush + // Initialize the environment and register the local writeout and flush // functions. Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy); Builder.CreateCall2(GCOVInit, WriteoutF, FlushF);