dbxout.c (dbxout_range_type): If the range has a base type (TREE_TYPE)...
authorPer Bothner <bothner@gcc.gnu.org>
Wed, 12 Jan 1994 21:30:12 +0000 (13:30 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Wed, 12 Jan 1994 21:30:12 +0000 (13:30 -0800)
* 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

index fd8bdd5ac89b45f7b689c8aaa14e96bf0a8c0bcf..44d8b8e86aab2f7349d56eb16a770579beff71b8 100644 (file)
@@ -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
     {