diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1994-01-12 13:30:12 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1994-01-12 13:30:12 -0800 |
commit | 6c73937e8f6301056f3d83f7f35a3afacb53debf (patch) | |
tree | bdb32e51ad374e298967ef0b8e8f183964d8aa1c /gcc | |
parent | 8e871c059646234b12043d863f341fd73daf91e1 (diff) | |
download | gcc-6c73937e8f6301056f3d83f7f35a3afacb53debf.zip gcc-6c73937e8f6301056f3d83f7f35a3afacb53debf.tar.gz gcc-6c73937e8f6301056f3d83f7f35a3afacb53debf.tar.bz2 |
dbxout.c (dbxout_range_type): If the range has a base type (TREE_TYPE)...
* dbxout.c (dbxout_range_type): If the range has a base type
(TREE_TYPE), emit it, even if that is some other integer type.
From-SVN: r6386
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index fd8bdd5..44d8b8e 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -865,7 +865,7 @@ dbxout_range_type (type) tree type; { fprintf (asmfile, "r"); - if (TREE_TYPE (type) && TREE_CODE (TREE_TYPE(type)) != INTEGER_TYPE) + if (TREE_TYPE (type)) dbxout_type (TREE_TYPE (type), 0, 0); else { |