diff options
author | Eric Christopher <echristo@apple.com> | 2012-01-10 00:37:56 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-01-10 00:37:56 +0000 |
commit | fe2603a78a7a6c6b429eff95cd4a6f1c0ebe40bb (patch) | |
tree | 0b80172b68da43d0b27c7e27a123331a05755ae6 /clang/lib/Driver/Tools.cpp | |
parent | a08a74705bb04e61752c43d7a6c61f73fc88c9c2 (diff) | |
download | bcm5719-llvm-fe2603a78a7a6c6b429eff95cd4a6f1c0ebe40bb.tar.gz bcm5719-llvm-fe2603a78a7a6c6b429eff95cd4a6f1c0ebe40bb.zip |
Remove extraneous braces.
llvm-svn: 147818
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index e69e2cb9247..bacfab58b00 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -2571,9 +2571,8 @@ void ClangAs::ConstructJob(Compilation &C, const JobAction &JA, // -g to clang. I guess if it is wrong there then it is wrong here too :) . Args.ClaimAllArgs(options::OPT_g_Group); if (Arg *A = Args.getLastArg(options::OPT_g_Group)) - if (!A->getOption().matches(options::OPT_g0)) { + if (!A->getOption().matches(options::OPT_g0)) CmdArgs.push_back("-g"); - } // Optionally embed the -cc1as level arguments into the debug info, for build // analysis. |