This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: common tree nodes question


>>         new_type = type_for_mode (new_mode, TREE_UNSIGNED (type));
> [...]
>> !       t = TYPE_MAIN_VARIANT (new_type);
> [...]
>> !       TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
>
> You can't modify T.  You need to create a new type which is a
> variant of new_type to hold your TYPE_DEBUG_REPRESENTATION_TYPE.

been there done that.  i tried making a copy of the node with
copy_node and then doing magic on that.  didn't work because then
the FE gets all confused because of type inequality.

suggestions?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]