diff options
| author | Enrico Granata <egranata@apple.com> | 2012-05-08 18:47:08 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2012-05-08 18:47:08 +0000 |
| commit | 886147f0acf2172e5e4c677a4fef9e506fb389da (patch) | |
| tree | 162789b0a095f9b7b951bb1bb56757d094d521cf /lldb/source/Core/ValueObject.cpp | |
| parent | a5f9c064ece85e667a93023b1a0dae320289e1e7 (diff) | |
| download | bcm5719-llvm-886147f0acf2172e5e4c677a4fef9e506fb389da.tar.gz bcm5719-llvm-886147f0acf2172e5e4c677a4fef9e506fb389da.zip | |
First part of a fix to make GetNonSyntheticValue() work correctly
llvm-svn: 156397
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 008ff4f21c5..b0b1a67095a 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -2103,6 +2103,12 @@ ValueObject::GetStaticValue() return GetSP(); } +lldb::ValueObjectSP +ValueObject::GetNonSyntheticValue () +{ + return GetSP(); +} + ValueObjectSP ValueObject::GetSyntheticValue (bool use_synthetic) { |

