[llvm] r208253 - llvm-cov: Fix some funny indentation (NFC)

Justin Bogner mail at justinbogner.com
Wed May 7 14:50:44 PDT 2014


Author: bogner
Date: Wed May  7 16:50:43 2014
New Revision: 208253

URL: http://llvm.org/viewvc/llvm-project?rev=208253&view=rev
Log:
llvm-cov: Fix some funny indentation (NFC)

Noticed by Duncan Exon Smith. Thanks!

Modified:
    llvm/trunk/include/llvm/Support/GCOV.h

Modified: llvm/trunk/include/llvm/Support/GCOV.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/GCOV.h?rev=208253&r1=208252&r2=208253&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/GCOV.h (original)
+++ llvm/trunk/include/llvm/Support/GCOV.h Wed May  7 16:50:43 2014
@@ -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; }





More information about the llvm-commits mailing list