diff options
author | Alan Modra <amodra@gmail.com> | 2000-01-14 23:10:21 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-01-14 23:10:21 +0000 |
commit | 3dceb55b374a67ce1185ff7a3d637bda8affa785 (patch) | |
tree | 86f1f7a73fb6f7994b742b6a08532cd955c02752 /binutils/stabs.c | |
parent | 28240dcd30bd657bf678cc62554794ca69ed3987 (diff) | |
download | gdb-3dceb55b374a67ce1185ff7a3d637bda8affa785.zip gdb-3dceb55b374a67ce1185ff7a3d637bda8affa785.tar.gz gdb-3dceb55b374a67ce1185ff7a3d637bda8affa785.tar.bz2 |
Correct function return types for new and fussy gcc.
Diffstat (limited to 'binutils/stabs.c')
-rw-r--r-- | binutils/stabs.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/binutils/stabs.c b/binutils/stabs.c index 53e1070..8c20ed3 100644 --- a/binutils/stabs.c +++ b/binutils/stabs.c @@ -1639,7 +1639,7 @@ parse_stab_type (dhandle, info, typename, pp, slotp) if (size != -1) { if (! debug_record_type_size (dhandle, dtype, (unsigned int) size)) - return false; + return DEBUG_TYPE_NULL; } return dtype; @@ -3131,7 +3131,7 @@ parse_stab_array_type (dhandle, info, pp, stringp) /* If the index type is type 0, we take it as int. */ p = *pp; if (! parse_stab_type_number (&p, typenums)) - return false; + return DEBUG_TYPE_NULL; if (typenums[0] == 0 && typenums[1] == 0 && **pp != '=') { index_type = debug_find_named_type (dhandle, "int"); @@ -3139,7 +3139,7 @@ parse_stab_array_type (dhandle, info, pp, stringp) { index_type = debug_make_int_type (dhandle, 4, false); if (index_type == DEBUG_TYPE_NULL) - return false; + return DEBUG_TYPE_NULL; } *pp = p; } @@ -3168,7 +3168,7 @@ parse_stab_array_type (dhandle, info, pp, stringp) if (**pp != ';') { bad_stab (orig); - return false; + return DEBUG_TYPE_NULL; } ++*pp; @@ -3182,14 +3182,14 @@ parse_stab_array_type (dhandle, info, pp, stringp) if (**pp != ';') { bad_stab (orig); - return false; + return DEBUG_TYPE_NULL; } ++*pp; element_type = parse_stab_type (dhandle, info, (const char *) NULL, pp, (debug_type **) NULL); if (element_type == DEBUG_TYPE_NULL) - return false; + return DEBUG_TYPE_NULL; if (adjustable) { |