Whitespace.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 14 Nov 2013 11:44:58 +0000 (11:44 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 14 Nov 2013 11:44:58 +0000 (11:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194692 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/GCOV.cpp

index a91e88c4e0f8bf1b5a892ec686ed26ea3335bc2c..eebb20624aeeced8f748c9c60fbf3420c5606fa9 100644 (file)
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// GCOV implements the interface to read and write coverage files that use 
+// GCOV implements the interface to read and write coverage files that use
 // 'gcov' format.
 //
 //===----------------------------------------------------------------------===//
@@ -94,7 +94,7 @@ void GCOVFile::dump() {
 /// reading .gcno and .gcda files.
 void GCOVFile::collectLineCounts(FileInfo &FI) {
   for (SmallVectorImpl<GCOVFunction *>::iterator I = Functions.begin(),
-         E = Functions.end(); I != E; ++I) 
+         E = Functions.end(); I != E; ++I)
     (*I)->collectLineCounts(FI);
   FI.setRunCount(RunCount);
   FI.setProgramCount(ProgramCount);
@@ -312,4 +312,3 @@ void FileInfo::print(raw_fd_ostream &OS, StringRef gcnoFile,
     }
   }
 }
-