aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-09-21 10:29:33 -0600
committerTom Tromey <tromey@adacore.com>2023-11-21 14:52:05 -0700
commita3e9fbf7e889228b091a7454cb5d862ddbc5b7ca (patch)
tree26d554938d99483aee79149b4a002a8951cc98e1
parentc3842cbe44249a70bcf4bb1a123f4335c4e98bf1 (diff)
downloadgdb-a3e9fbf7e889228b091a7454cb5d862ddbc5b7ca.zip
gdb-a3e9fbf7e889228b091a7454cb5d862ddbc5b7ca.tar.gz
gdb-a3e9fbf7e889228b091a7454cb5d862ddbc5b7ca.tar.bz2
Remove some QUIT calls from need_access_label_p
I think these invocations of QUIT in need_access_label_p are overkill. QUIT is already called from its caller. This just removes them. Acked-By: Simon Marchi <simon.marchi@efficios.com> Reviewed-by: Keith Seitz <keiths@redhat.com>
-rw-r--r--gdb/c-typeprint.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/c-typeprint.c b/gdb/c-typeprint.c
index e450982..241fbca 100644
--- a/gdb/c-typeprint.c
+++ b/gdb/c-typeprint.c
@@ -911,31 +911,25 @@ need_access_label_p (struct type *type)
{
if (type->is_declared_class ())
{
- QUIT;
for (int i = TYPE_N_BASECLASSES (type); i < type->num_fields (); i++)
if (!TYPE_FIELD_PRIVATE (type, i))
return true;
- QUIT;
for (int j = 0; j < TYPE_NFN_FIELDS (type); j++)
for (int i = 0; i < TYPE_FN_FIELDLIST_LENGTH (type, j); i++)
if (!TYPE_FN_FIELD_PRIVATE (TYPE_FN_FIELDLIST1 (type,
j), i))
return true;
- QUIT;
for (int i = 0; i < TYPE_TYPEDEF_FIELD_COUNT (type); ++i)
if (!TYPE_TYPEDEF_FIELD_PRIVATE (type, i))
return true;
}
else
{
- QUIT;
for (int i = TYPE_N_BASECLASSES (type); i < type->num_fields (); i++)
if (TYPE_FIELD_PRIVATE (type, i) || TYPE_FIELD_PROTECTED (type, i))
return true;
- QUIT;
for (int j = 0; j < TYPE_NFN_FIELDS (type); j++)
{
- QUIT;
for (int i = 0; i < TYPE_FN_FIELDLIST_LENGTH (type, j); i++)
if (TYPE_FN_FIELD_PROTECTED (TYPE_FN_FIELDLIST1 (type,
j), i)
@@ -944,7 +938,6 @@ need_access_label_p (struct type *type)
i))
return true;
}
- QUIT;
for (int i = 0; i < TYPE_TYPEDEF_FIELD_COUNT (type); ++i)
if (TYPE_TYPEDEF_FIELD_PROTECTED (type, i)
|| TYPE_TYPEDEF_FIELD_PRIVATE (type, i))