summaryrefslogtreecommitdiff
path: root/lib/IR/GCOV.cpp
diff options
context:
space:
mode:
authorYuchen Wu <yuchenericwu@hotmail.com>2013-10-23 03:41:03 +0000
committerYuchen Wu <yuchenericwu@hotmail.com>2013-10-23 03:41:03 +0000
commit752d303a103a4b2504ddf50c0613a3c2f3536014 (patch)
tree2ffb942f5ef3460664136b758b0375f8aa3c4cc9 /lib/IR/GCOV.cpp
parent96b5670cf454a586bee6d364fa91398c2e085852 (diff)
downloadllvm-752d303a103a4b2504ddf50c0613a3c2f3536014.tar.gz
llvm-752d303a103a4b2504ddf50c0613a3c2f3536014.tar.bz2
llvm-752d303a103a4b2504ddf50c0613a3c2f3536014.tar.xz
Test commit. Added whitespace in GCOV.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR/GCOV.cpp')
-rw-r--r--lib/IR/GCOV.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/GCOV.cpp b/lib/IR/GCOV.cpp
index e16c7e6c76..f810d37775 100644
--- a/lib/IR/GCOV.cpp
+++ b/lib/IR/GCOV.cpp
@@ -51,7 +51,7 @@ bool GCOVFile::read(GCOVBuffer &Buffer) {
// Use existing function while reading .gcda file.
assert(i < Functions.size() && ".gcda data does not match .gcno data");
GFun = Functions[i];
- } else if (isGCNOFile(Format)){
+ } else if (isGCNOFile(Format)) {
GFun = new GCOVFunction();
Functions.push_back(GFun);
}