From: Per Bothner Date: Wed, 12 Jan 1994 21:30:12 +0000 (-0800) Subject: dbxout.c (dbxout_range_type): If the range has a base type (TREE_TYPE)... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6c73937e8f6301056f3d83f7f35a3afacb53debf;p=gcc.git 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 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index fd8bdd5ac89..44d8b8e86aa 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 {