debugger: disable some debug messages

This commit is contained in:
hjk
2010-07-13 11:21:28 +02:00
parent 3bf0789464
commit 574862ac9f

View File

@@ -810,7 +810,7 @@ def extractFields(type):
# Insufficient, see http://sourceware.org/bugzilla/show_bug.cgi?id=11777:
#fields = stripTypedefs(value.type).fields()
# This seems to work.
warn("TYPE 0: %s" % type)
#warn("TYPE 0: %s" % type)
type = stripTypedefs(type)
#warn("TYPE 1: %s" % type)
# This fails for arrays. See comment in lookupType.
@@ -819,7 +819,7 @@ def extractFields(type):
type = type2
#warn("TYPE 2: %s" % type)
fields = type.fields()
warn("FIELDS: %s" % fields)
#warn("FIELDS: %s" % fields)
return fields
#######################################################################