From: Davide Italiano Date: Mon, 13 Feb 2017 16:08:36 +0000 (+0000) Subject: [llvm-lto2] Fix typo spotted by Teresa (r294885 post-commit review). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a0219a6778f959d874545ba068d1da3821f223f;p=llvm [llvm-lto2] Fix typo spotted by Teresa (r294885 post-commit review). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294962 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-lto2/llvm-lto2.cpp b/tools/llvm-lto2/llvm-lto2.cpp index ebe5def099d..328c41dd36e 100644 --- a/tools/llvm-lto2/llvm-lto2.cpp +++ b/tools/llvm-lto2/llvm-lto2.cpp @@ -94,7 +94,7 @@ static cl::opt OptRemarksOutput("pass-remarks-output", cl::desc("YAML output file for optimization remarks")); -static cl::opt OptRemarksWithsHotness( +static cl::opt OptRemarksWithHotness( "pass-remarks-with-hotness", cl::desc("Whether to include hotness informations in the remarks.\n" "Has effect only if -pass-remarks-output is specified.")); @@ -187,7 +187,7 @@ int main(int argc, char **argv) { // Optimization remarks. Conf.RemarksFilename = OptRemarksOutput; - Conf.RemarksWithHotness = OptRemarksWithsHotness; + Conf.RemarksWithHotness = OptRemarksWithHotness; // Run a custom pipeline, if asked for. Conf.OptPipeline = OptPipeline;