summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorEkaterina Romanova <katya_romanova@playstation.sony.com>2015-12-24 22:52:41 +0000
committerEkaterina Romanova <katya_romanova@playstation.sony.com>2015-12-24 22:52:41 +0000
commit8b27746bde2fa46c50911f8be59fd7bbbd5f3764 (patch)
treefc18a82833558ed348901f7552ea19419f292a6d /clang/lib
parentb28ca3f1181dba31caa2f5bf7b059c4929c6d2be (diff)
downloadbcm5719-llvm-8b27746bde2fa46c50911f8be59fd7bbbd5f3764.tar.gz
bcm5719-llvm-8b27746bde2fa46c50911f8be59fd7bbbd5f3764.zip
Some minor correction based on David Blaikie post-commit code review for r255281.
llvm-svn: 256396
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp5
-rw-r--r--clang/lib/Parse/ParseDeclCXX.cpp2
2 files changed, 3 insertions, 4 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index 8481a735aa4..d3870424b6b 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -1,4 +1,4 @@
-//===--- CompilerInvocation.cpp -------------------------------------------===//
+//===---
//
// The LLVM Compiler Infrastructure
//
@@ -417,8 +417,7 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK,
Opts.EmitCodeView = Args.hasArg(OPT_gcodeview);
Opts.SplitDwarfFile = Args.getLastArgValue(OPT_split_dwarf_file);
Opts.DebugTypeExtRefs = Args.hasArg(OPT_dwarf_ext_refs);
- if (Triple.isPS4CPU())
- Opts.DebugExplicitImport = true;
+ Opts.DebugExplicitImport = Triple.isPS4CPU();
for (const auto &Arg : Args.getAllArgValues(OPT_fdebug_prefix_map_EQ))
Opts.DebugPrefixMap.insert(StringRef(Arg).split('='));
diff --git a/clang/lib/Parse/ParseDeclCXX.cpp b/clang/lib/Parse/ParseDeclCXX.cpp
index b71ce20c34f..a021cc94776 100644
--- a/clang/lib/Parse/ParseDeclCXX.cpp
+++ b/clang/lib/Parse/ParseDeclCXX.cpp
@@ -65,7 +65,7 @@ Parser::DeclGroupPtrTy Parser::ParseNamespace(unsigned Context,
if (Tok.is(tok::code_completion)) {
Actions.CodeCompleteNamespaceDecl(getCurScope());
cutOffParsing();
- return DeclGroupPtrTy();;
+ return DeclGroupPtrTy();
}
SourceLocation IdentLoc;
OpenPOWER on IntegriCloud