diff options
author | Teresa Johnson <tejohnson@google.com> | 2015-11-02 18:03:12 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2015-11-02 18:03:12 +0000 |
commit | 6ef80dc1e15e1dfdcf03469bd67674697b58ade3 (patch) | |
tree | 46d73cbfcc154d8376adbef28d88dd2befc86f49 /clang/lib/Driver/Tools.cpp | |
parent | f72278f051552eb4dc90a870fece327d77801fe4 (diff) | |
download | llvm-6ef80dc1e15e1dfdcf03469bd67674697b58ade3.zip llvm-6ef80dc1e15e1dfdcf03469bd67674697b58ade3.tar.gz llvm-6ef80dc1e15e1dfdcf03469bd67674697b58ade3.tar.bz2 |
Clang format a few prior patches (NFC)
I had clang formatted my earlier patches using the wrong style.
Reformatted with the LLVM style.
llvm-svn: 251813
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index e72e4bd..34dfa4f 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -1672,7 +1672,8 @@ static void AddGoldPlugin(const ToolChain &ToolChain, const ArgList &Args, if (!CPU.empty()) CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=mcpu=") + CPU)); - if (IsThinLTO) CmdArgs.push_back("-plugin-opt=thinlto"); + if (IsThinLTO) + CmdArgs.push_back("-plugin-opt=thinlto"); } /// This is a helper function for validating the optional refinement step |