mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-28 13:51:16 +08:00
dwarf2out.c (base_type_die): Use DW_ATE_unsigned_fixed or DW_ATE_signed_fixed to describe FIXED_POINT_TYPE.
* dwarf2out.c (base_type_die): Use DW_ATE_unsigned_fixed or DW_ATE_signed_fixed to describe FIXED_POINT_TYPE. From-SVN: r129620
This commit is contained in:
parent
7790f79410
commit
9a9f6b5266
@ -1,3 +1,8 @@
|
|||||||
|
2007-10-24 Chao-ying Fu <fu@mips.com>
|
||||||
|
|
||||||
|
* dwarf2out.c (base_type_die): Use DW_ATE_unsigned_fixed or
|
||||||
|
DW_ATE_signed_fixed to describe FIXED_POINT_TYPE.
|
||||||
|
|
||||||
2007-10-24 Samuel Tardieu <sam@rfc1149.net>
|
2007-10-24 Samuel Tardieu <sam@rfc1149.net>
|
||||||
Olga Golovanevsky <olga@il.ibm.com>
|
Olga Golovanevsky <olga@il.ibm.com>
|
||||||
|
|
||||||
|
@ -8434,9 +8434,9 @@ base_type_die (tree type)
|
|||||||
|
|
||||||
case FIXED_POINT_TYPE:
|
case FIXED_POINT_TYPE:
|
||||||
if (TYPE_UNSIGNED (type))
|
if (TYPE_UNSIGNED (type))
|
||||||
encoding = DW_ATE_signed_fixed;
|
|
||||||
else
|
|
||||||
encoding = DW_ATE_unsigned_fixed;
|
encoding = DW_ATE_unsigned_fixed;
|
||||||
|
else
|
||||||
|
encoding = DW_ATE_signed_fixed;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Dwarf2 doesn't know anything about complex ints, so use
|
/* Dwarf2 doesn't know anything about complex ints, so use
|
||||||
|
Loading…
x
Reference in New Issue
Block a user