Commit 886de2d4 by Joel Brobecker Committed by Joel Brobecker

dwarf2out.c (is_subrange_type): Minor code rework.

        * dwarf2out.c (is_subrange_type): Minor code rework. No behavior
        change.

From-SVN: r79837
parent d915eec0
2004-03-22 Joel Brobecker <brobecker@gnat.com>
* dwarf2out.c (is_subrange_type): Minor code rework. No behavior
change.
2004-03-22 Jakub Jelinek <jakub@redhat.com>
PR c/14069
......
......@@ -8000,15 +8000,19 @@ is_subrange_type (tree type)
{
tree subtype = TREE_TYPE (type);
if (TREE_CODE (type) == INTEGER_TYPE
&& subtype != NULL_TREE)
{
if (TREE_CODE (subtype) == INTEGER_TYPE)
return true;
if (TREE_CODE (subtype) == ENUMERAL_TYPE)
return true;
}
return false;
/* Subrange types are identified by the fact that they are integer
types, and that they have a subtype which is either an integer type
or an enumeral type. */
if (TREE_CODE (type) != INTEGER_TYPE
|| subtype == NULL_TREE)
return false;
if (TREE_CODE (subtype) != INTEGER_TYPE
&& TREE_CODE (subtype) != ENUMERAL_TYPE)
return false;
return true;
}
/* Given a pointer to a tree node for a subrange type, return a pointer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment