From d50c05658f60f379ba079495eb0e3b670f43dca3 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 5 Jan 2015 13:44:59 +0000 Subject: [PATCH] Fix formatting. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225168 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/Tools.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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); } -- 2.50.1