Fix formatting. NFC.

llvm-svn: 225168
This commit is contained in:
Rafael Espindola 2015-01-05 13:44:59 +00:00
parent 6632d1f67e
commit 7a45e8794f
1 changed files with 3 additions and 6 deletions

View File

@ -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);
}