diff options
author | Doug Evans <dje@google.com> | 2010-12-08 21:33:20 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2010-12-08 21:33:20 +0000 |
commit | 73e2eb35ba05f0644f160a2815ac2cafcbb3b630 (patch) | |
tree | a8e3391cc260525b700133802fc0ad2347e3d2c7 | |
parent | 0a5429f697fe6d0451684232027d252b77c37672 (diff) | |
download | gdb-73e2eb35ba05f0644f160a2815ac2cafcbb3b630.zip gdb-73e2eb35ba05f0644f160a2815ac2cafcbb3b630.tar.gz gdb-73e2eb35ba05f0644f160a2815ac2cafcbb3b630.tar.bz2 |
* gdbtypes.c (check_typedef): Tweak comment.
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/gdbtypes.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f54caee..75c7e32 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2010-12-08 Doug Evans <dje@google.com> + * gdbtypes.c (check_typedef): Tweak comment. + PR symtab/12302 * dwarf2read.c (struct psymtab_cu_index_map): New struct. (hash_psymtab_cu_index, eq_psymtab_cu_index): New functions. diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index d96d0f8..b651098 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -1582,7 +1582,7 @@ check_typedef (struct type *type) if (TYPE_STUB (target_type) || TYPE_TARGET_STUB (target_type)) { - /* Empty. */ + /* Nothing we can do. */ } else if (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_NFIELDS (type) == 1 |