aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Expression/ExpressionSourceCode.cpp
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2014-07-23 14:37:35 +0000
committerTodd Fiala <todd.fiala@gmail.com>2014-07-23 14:37:35 +0000
commitd8eaa17587ecdb1c9f185a82f86d41d2157b6e7d (patch)
treed50de619923881fbfc7cba788e59e6b5d2cef447 /lldb/source/Expression/ExpressionSourceCode.cpp
parent14ff2df05c241297f0139f46c825dc333eea4b9c (diff)
downloadllvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.zip
llvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.tar.gz
llvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.tar.bz2
Update lldb to track recent Triple arm64 enum removal and collapse into aarch64.
See the following llvm change for details: r213743 | tnorthover | 2014-07-23 05:32:47 -0700 (Wed, 23 Jul 2014) | 9 lines AArch64: remove arm64 triple enumerator. This change fixes build breaks on Linux and MacOSX lldb. llvm-svn: 213755
Diffstat (limited to 'lldb/source/Expression/ExpressionSourceCode.cpp')
-rw-r--r--lldb/source/Expression/ExpressionSourceCode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ExpressionSourceCode.cpp b/lldb/source/Expression/ExpressionSourceCode.cpp
index c79a2d7..bf6de55 100644
--- a/lldb/source/Expression/ExpressionSourceCode.cpp
+++ b/lldb/source/Expression/ExpressionSourceCode.cpp
@@ -51,7 +51,7 @@ bool ExpressionSourceCode::GetText (std::string &text, lldb::LanguageType wrappi
if (Target *target = exe_ctx.GetTargetPtr())
{
- if (target->GetArchitecture().GetMachine() == llvm::Triple::arm64)
+ if (target->GetArchitecture().GetMachine() == llvm::Triple::aarch64)
{
target_specific_defines = "typedef bool BOOL;\n";
}