diff options
author | Sean Callanan <scallanan@apple.com> | 2011-11-04 22:46:46 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-11-04 22:46:46 +0000 |
commit | bfb237bc0205cde942205e0669b6e6fb02eacc80 (patch) | |
tree | 6fbef4cf99821b2034e0fb882861271a0c016508 /lldb/source/Expression/ClangExpressionParser.cpp | |
parent | 67f96887aa0682cc8332fe369d6a3f1fb5f99446 (diff) | |
download | bcm5719-llvm-bfb237bc0205cde942205e0669b6e6fb02eacc80.tar.gz bcm5719-llvm-bfb237bc0205cde942205e0669b6e6fb02eacc80.zip |
Updated LLVM/Clang to pick up a fix for imports of
C++ vtables, fixing a record layout problem in the
expression parser.
Also fixed various problems with the generation
and unpacking of llvm.zip given our new better
handling of multiple architectures in the LLVM
build.
(And added a log message that will hopefully catch
record layout problems in the future.)
llvm-svn: 143741
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index 4a8f9412cf7..d040cd84891 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -270,7 +270,7 @@ ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope, } else { - m_compiler->getTargetOpts().Triple = llvm::sys::getHostTriple(); + m_compiler->getTargetOpts().Triple = llvm::sys::getDefaultTargetTriple(); } // 3. Set up various important bits of infrastructure. |