summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/ClangExpressionParser.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2015-09-23 20:12:19 +0000
committerEnrico Granata <egranata@apple.com>2015-09-23 20:12:19 +0000
commit15a67f49aa57f0d36a42a02eb63fe57836664b81 (patch)
treeff1a6ac9250bc74e94a0c7dd8be824d2079462d3 /lldb/source/Expression/ClangExpressionParser.cpp
parent27a69a2ba02ee1882bf312a087970a928666b270 (diff)
downloadbcm5719-llvm-15a67f49aa57f0d36a42a02eb63fe57836664b81.tar.gz
bcm5719-llvm-15a67f49aa57f0d36a42a02eb63fe57836664b81.zip
Make the ObjCLanguageRuntimes comply with llvm-style RTTI
llvm-svn: 248427
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-rw-r--r--lldb/source/Expression/ClangExpressionParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp
index 6f6a0b7d545..432ddbb5505 100644
--- a/lldb/source/Expression/ClangExpressionParser.cpp
+++ b/lldb/source/Expression/ClangExpressionParser.cpp
@@ -277,7 +277,7 @@ ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope,
{
if (process_sp->GetObjCLanguageRuntime())
{
- if (process_sp->GetObjCLanguageRuntime()->GetRuntimeVersion() == eAppleObjC_V2)
+ if (process_sp->GetObjCLanguageRuntime()->GetRuntimeVersion() == ObjCLanguageRuntime::ObjCRuntimeVersions::eAppleObjC_V2)
m_compiler->getLangOpts().ObjCRuntime.set(ObjCRuntime::MacOSX, VersionTuple(10, 7));
else
m_compiler->getLangOpts().ObjCRuntime.set(ObjCRuntime::FragileMacOSX, VersionTuple(10, 7));
OpenPOWER on IntegriCloud