From: Rafael Espindola Date: Mon, 5 Jan 2015 13:44:59 +0000 (+0000) Subject: Fix formatting. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d50c05658f60f379ba079495eb0e3b670f43dca3;p=clang Fix formatting. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225168 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index e81e936e64..e672d6c311 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -2441,14 +2441,11 @@ static std::string getMSCompatibilityVersion(const char *VersionStr) { } // Claim options we don't want to warn if they are unused. We do this for -// options that -// build systems might add but are unused when assembling or only running the -// preprocessor -// for example. +// options that build systems might add but are unused when assembling or only +// running the preprocessor for example. static void claimNoWarnArgs(const ArgList &Args) { // Don't warn about unused -f(no-)?lto. This can happen when we're - // preprocessing, - // precompiling or assembling. + // preprocessing, precompiling or assembling. Args.ClaimAllArgs(options::OPT_flto); Args.ClaimAllArgs(options::OPT_fno_lto); }