diff options
author | Jim Ingham <jingham@apple.com> | 2010-09-28 01:25:32 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-09-28 01:25:32 +0000 |
commit | 5a369128f66b30f8ce003c641dc40be0e87c09ca (patch) | |
tree | 8ad8a725e41d77a94fc92b8ec66cd91dfa056560 /lldb/source/Target/LanguageRuntime.cpp | |
parent | 7990df1ae259f218e1bcdfce24ecc932697cf061 (diff) | |
download | bcm5719-llvm-5a369128f66b30f8ce003c641dc40be0e87c09ca.tar.gz bcm5719-llvm-5a369128f66b30f8ce003c641dc40be0e87c09ca.zip |
Replace the vestigial Value::GetOpaqueCLangQualType with the more correct Value::GetValueOpaqueClangQualType.
But mostly, move the ObjC Trampoline handling code from the MacOSX dyld plugin to the AppleObjCRuntime classes.
llvm-svn: 114935
Diffstat (limited to 'lldb/source/Target/LanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index 00c35f80633..3b5b3299844 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -35,7 +35,8 @@ LanguageRuntime::FindPlugin (Process *process, lldb::LanguageType language) //---------------------------------------------------------------------- // Constructor //---------------------------------------------------------------------- -LanguageRuntime::LanguageRuntime(Process *process) +LanguageRuntime::LanguageRuntime(Process *process) : + m_process (process) { } |