diff options
author | Yuchen Wu <yuchenericwu@hotmail.com> | 2013-10-23 20:35:00 +0000 |
---|---|---|
committer | Yuchen Wu <yuchenericwu@hotmail.com> | 2013-10-23 20:35:00 +0000 |
commit | 3197b25b27ab1f9b74321e4841f0d8e5fd95f1f6 (patch) | |
tree | 1b4a95bedfcef98a0e3328387922facba765771e /llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp | |
parent | c94122e05bf086f3630ec8d3a4b319df8a31ff4d (diff) | |
download | bcm5719-llvm-3197b25b27ab1f9b74321e4841f0d8e5fd95f1f6.tar.gz bcm5719-llvm-3197b25b27ab1f9b74321e4841f0d8e5fd95f1f6.zip |
Fixed comment typo in GCOVProfiling.cpp
llvm-svn: 193268
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp')
-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 f03b503c93e..4e9afeed430 100644 --- a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/llvm/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); |