forked from OSchip/llvm-project
Quick fix to make LLDB TOT work with Clang TOT.
Avoids an error about an ambiguous constructor call. llvm-svn: 173118
This commit is contained in:
parent
d68d6196af
commit
b1de8dd986
|
@ -243,7 +243,7 @@ ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope,
|
|||
if (m_compiler->getTargetOpts().Triple.find("ios") != std::string::npos)
|
||||
m_compiler->getTargetOpts().ABI = "apcs-gnu";
|
||||
|
||||
m_compiler->createDiagnostics(0, 0);
|
||||
m_compiler->createDiagnostics();
|
||||
|
||||
// Create the target instance.
|
||||
m_compiler->setTarget(TargetInfo::CreateTargetInfo(m_compiler->getDiagnostics(),
|
||||
|
|
Loading…
Reference in New Issue