Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
104a6e9b
Commit
104a6e9b
authored
14 years ago
by
Sean Callanan
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a silly bug that was causing the "this" pointer
to be passed improperly to expressions in certain cases. llvm-svn: 116884
parent
f99ee7cd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lldb/include/lldb/Expression/ClangUserExpression.h
+4
-4
4 additions, 4 deletions
lldb/include/lldb/Expression/ClangUserExpression.h
lldb/source/Expression/ClangUserExpression.cpp
+3
-3
3 additions, 3 deletions
lldb/source/Expression/ClangUserExpression.cpp
with
7 additions
and
7 deletions
lldb/include/lldb/Expression/ClangUserExpression.h
+
4
−
4
View file @
104a6e9b
...
...
@@ -95,11 +95,11 @@ public:
ThreadPlan
*
GetThreadPlanToExecuteJITExpression
(
Stream
&
error_stream
,
ExecutionContext
&
exe_ctx
);
ExecutionContext
&
exe_ctx
);
bool
FinalizeJITExecution
(
Stream
&
error_stream
,
ExecutionContext
&
exe_ctx
,
ClangExpressionVariable
*&
result
);
ExecutionContext
&
exe_ctx
,
ClangExpressionVariable
*&
result
);
//------------------------------------------------------------------
/// Return the string that the parser should parse. Must be a full
...
...
@@ -204,7 +204,7 @@ private:
PrepareToExecuteJITExpression
(
Stream
&
error_stream
,
ExecutionContext
&
exe_ctx
,
lldb
::
addr_t
&
struct_address
,
lldb
::
addr_t
object_ptr
);
lldb
::
addr_t
&
object_ptr
);
std
::
string
m_expr_text
;
///< The text of the expression, as typed by the user
std
::
string
m_transformed_text
;
///< The text of the expression, as send to the parser
...
...
This diff is collapsed.
Click to expand it.
lldb/source/Expression/ClangUserExpression.cpp
+
3
−
3
View file @
104a6e9b
...
...
@@ -216,9 +216,9 @@ ClangUserExpression::Parse (Stream &error_stream, ExecutionContext &exe_ctx)
bool
ClangUserExpression
::
PrepareToExecuteJITExpression
(
Stream
&
error_stream
,
ExecutionContext
&
exe_ctx
,
lldb
::
addr_t
&
struct_address
,
lldb
::
addr_t
object_ptr
)
ExecutionContext
&
exe_ctx
,
lldb
::
addr_t
&
struct_address
,
lldb
::
addr_t
&
object_ptr
)
{
Log
*
log
=
lldb_private
::
GetLogIfAllCategoriesSet
(
LIBLLDB_LOG_EXPRESSIONS
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment