1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix GDB pretty printer for Optional after r354246

llvm-svn: 361870
This commit is contained in:
David Blaikie 2019-05-28 20:22:16 +00:00
parent 7fb6630c25
commit 12a22606f9

View File

@ -129,8 +129,7 @@ class OptionalPrinter(Iterator):
self.val = None
if not val['Storage']['hasVal']:
raise StopIteration
return ('value', val['Storage']['storage']['buffer'].address.cast(
val.type.template_argument(0).pointer()).dereference())
return ('value', val['Storage']['value'])
def to_string(self):
return 'llvm::Optional{}'.format('' if self.val['Storage']['hasVal'] else ' is not initialized')