diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-03-05 19:53:24 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-03-05 19:53:24 +0000 |
commit | 35e2ab60397ec15d9a2ce31ad71614ecc62f34b6 (patch) | |
tree | 5a6f7b4db6e31ed1dd9e97a198faf9e59b01b67c /lldb/scripts/Python | |
parent | d1adb7901091c8ee320b2052df55f86a09225f0a (diff) | |
download | bcm5719-llvm-35e2ab60397ec15d9a2ce31ad71614ecc62f34b6.tar.gz bcm5719-llvm-35e2ab60397ec15d9a2ce31ad71614ecc62f34b6.zip |
rdar://problem/10976649
Add SBFrame::IsEqual(const SBFrame &that) method and export it to the Python binding.
Alos add a test case test_frame_api_IsEqual() to TestFrames.py file.
llvm-svn: 152050
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBFrame.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBFrame.i b/lldb/scripts/Python/interface/SBFrame.i index c718073506c..4bedbff8cce 100644 --- a/lldb/scripts/Python/interface/SBFrame.i +++ b/lldb/scripts/Python/interface/SBFrame.i @@ -55,6 +55,9 @@ public: ~SBFrame(); bool + IsEqual (const lldb::SBFrame &rhs) const; + + bool IsValid() const; uint32_t |