Some minor correction based on David Blaikie post-commit code review for r255281.

llvm-svn: 256396
This commit is contained in:
Ekaterina Romanova 2015-12-24 22:52:41 +00:00
parent b28ca3f118
commit 8b27746bde
2 changed files with 3 additions and 4 deletions

View File

@ -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('='));

View File

@ -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;