diff options
| author | Sean Callanan <scallanan@apple.com> | 2010-10-01 02:06:46 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2010-10-01 02:06:46 +0000 |
| commit | e1314273b6f4c439312fa863b44e19356d5e2dc7 (patch) | |
| tree | ed14254563ec8d5059ef121fd0116d4289dd3092 /lldb/source/Expression/ClangExpressionVariable.cpp | |
| parent | 3546b1aea1d64292b11ba18cdb9c9adb3b2dc15a (diff) | |
Fixed handling of signed short types in expressions.
llvm-svn: 115267
Diffstat (limited to 'lldb/source/Expression/ClangExpressionVariable.cpp')
| -rw-r--r-- | lldb/source/Expression/ClangExpressionVariable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionVariable.cpp b/lldb/source/Expression/ClangExpressionVariable.cpp index f406583dd726..0ae37e488cda 100644 --- a/lldb/source/Expression/ClangExpressionVariable.cpp +++ b/lldb/source/Expression/ClangExpressionVariable.cpp @@ -51,7 +51,7 @@ ClangExpressionVariable::Print (Stream &output_stream, Error err; Value val; - if (!PointValueAtData (val, &exe_ctx)) + if (!PointValueAtData (val, NULL)) { err.SetErrorToGenericError(); err.SetErrorStringWithFormat("Variable doesn't contain a value"); |
