diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-05 13:44:59 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-05 13:44:59 +0000 |
commit | 7a45e8794fcc06c7b7a7a89b3cf0cb7e4e12a116 (patch) | |
tree | 7c6fa49624f6819a3640f58959b9c351740f4bb5 /clang/lib/Driver/Tools.cpp | |
parent | 6632d1f67e887d093a0de55133e9b115fdfbb56a (diff) | |
download | bcm5719-llvm-7a45e8794fcc06c7b7a7a89b3cf0cb7e4e12a116.tar.gz bcm5719-llvm-7a45e8794fcc06c7b7a7a89b3cf0cb7e4e12a116.zip |
Fix formatting. NFC.
llvm-svn: 225168
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index e81e936e64e..e672d6c3115 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/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); } |