summaryrefslogtreecommitdiff
path: root/tools/llvm-cov/GCOVReader.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-09-29 16:46:47 +0000
committerDevang Patel <dpatel@apple.com>2011-09-29 16:46:47 +0000
commit7a50202be59b59416d2d42820e68b26ed78b3d0f (patch)
treef00f45dd97ff59ec2543c7ea221c0e76c1c406bc /tools/llvm-cov/GCOVReader.cpp
parent9a7d48ae67d1f151d5339d37ce66c57179de77b4 (diff)
downloadllvm-7a50202be59b59416d2d42820e68b26ed78b3d0f.tar.gz
llvm-7a50202be59b59416d2d42820e68b26ed78b3d0f.tar.bz2
llvm-7a50202be59b59416d2d42820e68b26ed78b3d0f.tar.xz
Cosmetic changes, as per Nick's review.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-cov/GCOVReader.cpp')
-rw-r--r--tools/llvm-cov/GCOVReader.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/tools/llvm-cov/GCOVReader.cpp b/tools/llvm-cov/GCOVReader.cpp
index a8466cf601..cf01078462 100644
--- a/tools/llvm-cov/GCOVReader.cpp
+++ b/tools/llvm-cov/GCOVReader.cpp
@@ -10,12 +10,11 @@
// GCOVReader implements the interface to read coverage files that use 'gcov'
// format.
//
-//
//===----------------------------------------------------------------------===//
#include "GCOVReader.h"
-#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/OwningPtr.h"
+#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/MemoryObject.h"
#include "llvm/Support/system_error.h"
using namespace llvm;
@@ -35,16 +34,16 @@ bool GCOVFile::read(GCOVBuffer &Buffer) {
return false;
unsigned i = 0;
- while(1) {
+ while (1) {
GCOVFunction *GFun = NULL;
- if(Format == GCDA_402 || Format == GCDA_404) {
+ if (Format == GCDA_402 || Format == GCDA_404) {
if (i < Functions.size())
GFun = Functions[i];
} else
GFun = new GCOVFunction();
if (GFun && GFun->read(Buffer, Format)) {
- if(Format == GCNO_402 || Format == GCNO_404)
+ if (Format == GCNO_402 || Format == GCNO_404)
Functions.push_back(GFun);
}
else {
@@ -93,10 +92,10 @@ bool GCOVFunction::read(GCOVBuffer &Buff, GCOVFormat Format) {
Buff.readInt(); // Checksum #2
Name = Buff.readString();
- if(Format == GCNO_402 || Format == GCNO_404)
+ if (Format == GCNO_402 || Format == GCNO_404)
Filename = Buff.readString();
- if(Format == GCDA_402 || Format == GCDA_404) {
+ if (Format == GCDA_402 || Format == GCDA_404) {
Buff.readArcTag();
uint32_t Count = Buff.readInt() / 2;
for (unsigned i = 0, e = Count; i != e; ++i) {