Skip to content

Commit 48957ac

Browse files
committed
clang-format.
1 parent 8c93878 commit 48957ac

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

llvm/include/llvm/Object/ELFTypes.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -836,13 +836,9 @@ struct BBAddrMap {
836836
bool BBHash : 1;
837837
bool PostLinkCfg : 1;
838838

839-
bool hasPGOAnalysis() const {
840-
return FuncEntryCount || BBFreq || BrProb;
841-
}
839+
bool hasPGOAnalysis() const { return FuncEntryCount || BBFreq || BrProb; }
842840

843-
bool hasPGOAnalysisBBData() const {
844-
return BBFreq || BrProb;
845-
}
841+
bool hasPGOAnalysisBBData() const { return BBFreq || BrProb; }
846842

847843
// Encodes to minimum bit width representation.
848844
uint16_t encode() const {

llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ static cl::bits<PGOMapFeaturesEnum> PgoAnalysisMapFeatures(
168168
"extracted from PGO related analysis."));
169169

170170
static cl::opt<bool> PgoAnalysisMapEmitBBSectionsCfg(
171-
"pgo-analysis-map-emit-bb-sections-cfg", cl::desc("Enable the post-link cfg information from the basic block sections profile in the PGO analysis map"), cl::Hidden, cl::init(false));
171+
"pgo-analysis-map-emit-bb-sections-cfg",
172+
cl::desc("Enable the post-link cfg information from the basic block "
173+
"sections profile in the PGO analysis map"),
174+
cl::Hidden, cl::init(false));
172175

173176
static cl::opt<bool> BBAddrMapSkipEmitBBEntries(
174177
"basic-block-address-map-skip-bb-entries",

0 commit comments

Comments
 (0)