diff options
author | Ryan Mansfield <ryan_mansfield@apple.com> | 2025-01-08 05:07:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 11:07:23 +0100 |
commit | 67efbd0bf1b2df8a479e09eb2be7db4c3c892f2c (patch) | |
tree | d71ceda971249e9578daf77776a9b811ebf7ac9a /llvm/lib/Transforms/IPO/FunctionSpecialization.cpp | |
parent | 303249c4490a7777a744d9afd449b64ff1132a42 (diff) | |
download | llvm-67efbd0bf1b2df8a479e09eb2be7db4c3c892f2c.zip llvm-67efbd0bf1b2df8a479e09eb2be7db4c3c892f2c.tar.gz llvm-67efbd0bf1b2df8a479e09eb2be7db4c3c892f2c.tar.bz2 |
[LLVM] Fix various cl::desc typos and whitespace issues (NFC) (#121955)
Diffstat (limited to 'llvm/lib/Transforms/IPO/FunctionSpecialization.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/FunctionSpecialization.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp b/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp index 96956481..449d64d 100644 --- a/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp +++ b/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp @@ -66,19 +66,19 @@ static cl::opt<unsigned> MaxCodeSizeGrowth( "Maximum codesize growth allowed per function")); static cl::opt<unsigned> MinCodeSizeSavings( - "funcspec-min-codesize-savings", cl::init(20), cl::Hidden, cl::desc( - "Reject specializations whose codesize savings are less than this" - "much percent of the original function size")); + "funcspec-min-codesize-savings", cl::init(20), cl::Hidden, + cl::desc("Reject specializations whose codesize savings are less than this " + "much percent of the original function size")); static cl::opt<unsigned> MinLatencySavings( "funcspec-min-latency-savings", cl::init(40), cl::Hidden, - cl::desc("Reject specializations whose latency savings are less than this" + cl::desc("Reject specializations whose latency savings are less than this " "much percent of the original function size")); static cl::opt<unsigned> MinInliningBonus( - "funcspec-min-inlining-bonus", cl::init(300), cl::Hidden, cl::desc( - "Reject specializations whose inlining bonus is less than this" - "much percent of the original function size")); + "funcspec-min-inlining-bonus", cl::init(300), cl::Hidden, + cl::desc("Reject specializations whose inlining bonus is less than this " + "much percent of the original function size")); static cl::opt<bool> SpecializeOnAddress( "funcspec-on-address", cl::init(false), cl::Hidden, cl::desc( |