From 6c73937e8f6301056f3d83f7f35a3afacb53debf Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Wed, 12 Jan 1994 13:30:12 -0800 Subject: [PATCH] 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 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.30.2