diff options
author | Greg Clayton <gclayton@apple.com> | 2010-12-17 02:26:24 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-12-17 02:26:24 +0000 |
commit | f028a1fb84235d88c087ecb35288b7b71bd4a798 (patch) | |
tree | 0c24caeb34c28a97b5bc8b5b5011ef41f27bf649 /lldb/source/Expression/ClangUserExpression.cpp | |
parent | f638b26f177ab39201279dcaa57c10993ff70221 (diff) | |
download | bcm5719-llvm-f028a1fb84235d88c087ecb35288b7b71bd4a798.tar.gz bcm5719-llvm-f028a1fb84235d88c087ecb35288b7b71bd4a798.zip |
Added access to set the current stack frame within a thread so any command
line commands can use the current thread/frame.
Fixed an issue with expressions that get sandboxed in an objective C method
where unichar wasn't being passed down.
Added a "static size_t Scalar::GetMaxByteSize();" function in case we need
to know the max supported by size of something within a Scalar object.
llvm-svn: 122027
Diffstat (limited to 'lldb/source/Expression/ClangUserExpression.cpp')
-rw-r--r-- | lldb/source/Expression/ClangUserExpression.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index 7ed85bc9709..eebfe8cd29a 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -180,6 +180,7 @@ ClangUserExpression::Parse (Stream &error_stream, const char *function_name = FunctionName(); m_transformed_stream.Printf("%s \n" + "typedef unsigned short unichar; \n" "@interface $__lldb_objc_class ($__lldb_category) \n" "-(void)%s:(void *)$__lldb_arg; \n" "@end \n" |