summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-01-12 21:30:12 +0000
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-01-12 21:30:12 +0000
commita774577b64eccc57fe62c72ec81a2a60941e9f57 (patch)
treebdb32e51ad374e298967ef0b8e8f183964d8aa1c /gcc
parentc832f8c5f528fe1a62b7c0257f8298a616b5be8c (diff)
downloadgcc-a774577b64eccc57fe62c72ec81a2a60941e9f57.tar.gz
* dbxout.c (dbxout_range_type): If the range has a base type
(TREE_TYPE), emit it, even if that is some other integer type. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6386 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/dbxout.c2
1 files changed, 1 insertions, 1 deletions
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
{