diff --git a/lib/IR/GCOV.cpp b/lib/IR/GCOV.cpp index e16c7e6c76a..f810d377755 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); }