diff options
author | Enrico Granata <egranata@apple.com> | 2012-10-05 23:20:58 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-10-05 23:20:58 +0000 |
commit | cd29fefbff09e498a90d13e3b22058d7dfb28925 (patch) | |
tree | 90bbca389060eb5ca139d18d964337b60191d807 /lldb/scripts | |
parent | ba036126cf3fa0e1aac8e63adbc498b40d3fd449 (diff) | |
download | bcm5719-llvm-cd29fefbff09e498a90d13e3b22058d7dfb28925.tar.gz bcm5719-llvm-cd29fefbff09e498a90d13e3b22058d7dfb28925.zip |
<rdar://problem/12442990> Fix the implementation of lldb.value.__eq__
llvm-svn: 165344
Diffstat (limited to 'lldb/scripts')
-rw-r--r-- | lldb/scripts/Python/python-extensions.swig | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lldb/scripts/Python/python-extensions.swig b/lldb/scripts/Python/python-extensions.swig index da70f205059..f9e5a130dbd 100644 --- a/lldb/scripts/Python/python-extensions.swig +++ b/lldb/scripts/Python/python-extensions.swig @@ -690,7 +690,15 @@ class value(object): return '0x%x' % self.sbvalue.GetValueAsUnsigned() def __eq__(self, other): - return self.sbvalue.GetValueAsUnsigned() == self.sbvalue.GetValueAsUnsigned() + self_err = SBError() + other_err = SBError() + self_val = self.sbvalue.GetValueAsUnsigned(self_err) + if self_err.fail: + raise ValueError("unable to extract value of self") + other_val = other.sbvalue.GetValueAsUnsigned(other_err) + if other_err.fail: + raise ValueError("unable to extract value of other") + return self_val == other_val def __neq__(self, other): return not self.__eq__(other) |