[PATCH] D149700: [llvm-profdata] Change default output format of llvm-profdata to ExtBinary
William Junda Huang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 4 12:35:06 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd1d4e56433c1: [llvm-profdata] Change default output format of llvm-profdata to ExtBinary (authored by huangjd).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149700/new/
https://reviews.llvm.org/D149700
Files:
llvm/tools/llvm-profdata/llvm-profdata.cpp
Index: llvm/tools/llvm-profdata/llvm-profdata.cpp
===================================================================
--- llvm/tools/llvm-profdata/llvm-profdata.cpp
+++ llvm/tools/llvm-profdata/llvm-profdata.cpp
@@ -1182,10 +1182,11 @@
cl::values(clEnumVal(instr, "Instrumentation profile (default)"),
clEnumVal(sample, "Sample profile")));
cl::opt<ProfileFormat> OutputFormat(
- cl::desc("Format of output profile"), cl::init(PF_Binary),
+ cl::desc("Format of output profile"), cl::init(PF_Ext_Binary),
cl::values(
- clEnumValN(PF_Binary, "binary", "Binary encoding (default)"),
- clEnumValN(PF_Ext_Binary, "extbinary", "Extensible binary encoding"),
+ clEnumValN(PF_Binary, "binary", "Binary encoding"),
+ clEnumValN(PF_Ext_Binary, "extbinary", "Extensible binary encoding "
+ "(default)"),
clEnumValN(PF_Text, "text", "Text encoding"),
clEnumValN(PF_GCC, "gcc",
"GCC encoding (only meaningful for -sample)")));
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149700.519609.patch
Type: text/x-patch
Size: 1059 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230504/5313e73b/attachment.bin>
More information about the llvm-commits
mailing list