When does GCC need to use the functions decode_ieee_single()/decode_ieee_double() ?

2022-09-19 Thread pengsheng.chen--- via Gcc
Dear all, The functions encode_ieee_single()/encode_ieee_double() encode the GCC internal representation (i.e., REAL_VALUE_TYPE) to the corresponding IEEE single precision/double precision formats. The constant values in a program (i.e., float a = 3.14;) will be parsed and then transferred to GC

Re: When does GCC need to use the functions decode_ieee_single()/decode_ieee_double() ?

2022-09-21 Thread pengsheng.chen--- via Gcc
5PM +0800, pengsheng.chen--- via Gcc wrote: > > The functions encode_ieee_single()/encode_ieee_double() encode the GCC > > internal representation (i.e., REAL_VALUE_TYPE) to the corresponding IEEE > > single precision/double precision formats. The constant values in a > program &