diff options
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -30,7 +30,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Calculate the format for CONST_DOUBLE. This depends on the relative widths of HOST_WIDE_INT and REAL_VALUE_TYPE. - We need to go out to e0wwwww, since REAL_ARITHMETIC assumes 16-bits + We need to go out to 0wwwww, since REAL_ARITHMETIC assumes 16-bits per element in REAL_VALUE_TYPE. This is duplicated in gengenrtl.c. @@ -70,19 +70,19 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #endif /* REAL_WIDTH */ #if REAL_WIDTH == 1 -# define CONST_DOUBLE_FORMAT "e0ww" +# define CONST_DOUBLE_FORMAT "0ww" #else # if REAL_WIDTH == 2 -# define CONST_DOUBLE_FORMAT "e0ww" +# define CONST_DOUBLE_FORMAT "0ww" # else # if REAL_WIDTH == 3 -# define CONST_DOUBLE_FORMAT "e0www" +# define CONST_DOUBLE_FORMAT "0www" # else # if REAL_WIDTH == 4 -# define CONST_DOUBLE_FORMAT "e0wwww" +# define CONST_DOUBLE_FORMAT "0wwww" # else # if REAL_WIDTH == 5 -# define CONST_DOUBLE_FORMAT "e0wwwww" +# define CONST_DOUBLE_FORMAT "0wwwww" # else # define CONST_DOUBLE_FORMAT /* nothing - will cause syntax error */ # endif |