diff options
author | Vedant Kumar <vsk@apple.com> | 2016-06-03 15:58:59 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-06-03 15:58:59 +0000 |
commit | 7f5200162b0a04cef89603ef5ebec6421ba769dd (patch) | |
tree | 05536375804a5214742818245a24983aa8dc2313 /llvm/tools/llvm-profdata/llvm-profdata.cpp | |
parent | a8d574075715d5afc43ab72245273a0c7fd01760 (diff) | |
download | bcm5719-llvm-7f5200162b0a04cef89603ef5ebec6421ba769dd.tar.gz bcm5719-llvm-7f5200162b0a04cef89603ef5ebec6421ba769dd.zip |
Trim some spaces (NFC)
llvm-svn: 271681
Diffstat (limited to 'llvm/tools/llvm-profdata/llvm-profdata.cpp')
-rw-r--r-- | llvm/tools/llvm-profdata/llvm-profdata.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/tools/llvm-profdata/llvm-profdata.cpp b/llvm/tools/llvm-profdata/llvm-profdata.cpp index 546029aef9f..20a167226a3 100644 --- a/llvm/tools/llvm-profdata/llvm-profdata.cpp +++ b/llvm/tools/llvm-profdata/llvm-profdata.cpp @@ -237,7 +237,6 @@ static int merge_main(int argc, const char *argv[]) { cl::desc("Profile kind:"), cl::init(instr), cl::values(clEnumVal(instr, "Instrumentation profile (default)"), clEnumVal(sample, "Sample profile"), clEnumValEnd)); - cl::opt<ProfileFormat> OutputFormat( cl::desc("Format of output profile"), cl::init(PF_Binary), cl::values(clEnumValN(PF_Binary, "binary", "Binary encoding (default)"), @@ -245,7 +244,6 @@ static int merge_main(int argc, const char *argv[]) { clEnumValN(PF_GCC, "gcc", "GCC encoding (only meaningful for -sample)"), clEnumValEnd)); - cl::opt<bool> OutputSparse("sparse", cl::init(false), cl::desc("Generate a sparse profile (only meaningful for -instr)")); |