aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Tools.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-01-10 00:37:56 +0000
committerEric Christopher <echristo@apple.com>2012-01-10 00:37:56 +0000
commit46d2a5c7f95a5dc2df95103c82802d2324b333e9 (patch)
treec93b64a69c36d506bfd76b5253888f3590c26a99 /lib/Driver/Tools.cpp
parent20abee6b95c4f5a61e471b4b616439280ca4a81b (diff)
Remove extraneous braces.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r--lib/Driver/Tools.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp
index e69e2cb924..bacfab58b0 100644
--- a/lib/Driver/Tools.cpp
+++ b/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.