summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-05-07 21:50:43 +0000
committerJustin Bogner <mail@justinbogner.com>2014-05-07 21:50:43 +0000
commitf7659e715fc9662e6fe1fddb4eaa50d18c1f3c6d (patch)
tree8dc3649215155217681b8a9c3a1255cae0ec54ea /include
parent97e15a83098394ddb5a06af7e037bde851153c23 (diff)
llvm-cov: Fix some funny indentation (NFC)
Noticed by Duncan Exon Smith. Thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208253 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/GCOV.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/GCOV.h b/include/llvm/Support/GCOV.h
index e06c0fa1dcf..0cb6cfd62cc 100644
--- a/include/llvm/Support/GCOV.h
+++ b/include/llvm/Support/GCOV.h
@@ -389,7 +389,7 @@ public:
const GCOVFunction *Function) {
if (Line > LineInfo[Filename].LastLine)
LineInfo[Filename].LastLine = Line;
- LineInfo[Filename].Functions[Line-1].push_back(Function);
+ LineInfo[Filename].Functions[Line-1].push_back(Function);
}
void setRunCount(uint32_t Runs) { RunCount = Runs; }
void setProgramCount(uint32_t Programs) { ProgramCount = Programs; }