Skip to content

Commit e365057

Browse files
committed
fixup! Implements asm printer with tests.
Fixes formatting issue.
1 parent a5ebe90 commit e365057

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ enum class PGOMapFeaturesEnum {
151151
};
152152
static cl::bits<PGOMapFeaturesEnum> PgoAnalysisMapFeatures(
153153
"pgo-analysis-map", cl::Hidden, cl::CommaSeparated,
154-
cl::values(clEnumValN(PGOMapFeaturesEnum::FuncEntryCount, "func-entry-count",
155-
"Function Entry Count"),
154+
cl::values(clEnumValN(PGOMapFeaturesEnum::FuncEntryCount,
155+
"func-entry-count", "Function Entry Count"),
156156
clEnumValN(PGOMapFeaturesEnum::BBFreq, "bb-freq",
157157
"Basic Block Frequency"),
158158
clEnumValN(PGOMapFeaturesEnum::BrProb, "br-prob",

0 commit comments

Comments
 (0)