diff options
Diffstat (limited to 'gcc/config/vax')
-rw-r--r-- | gcc/config/vax/vax.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index 4f8ffb0..a4ec091 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -86,9 +86,8 @@ override_options (void) { /* We're VAX floating point, not IEEE floating point. */ memset (real_format_for_mode, 0, sizeof real_format_for_mode); - real_format_for_mode[SFmode - QFmode] = &vax_f_format; - real_format_for_mode[DFmode - QFmode] - = (TARGET_G_FLOAT ? &vax_g_format : &vax_d_format); + REAL_MODE_FORMAT (SFmode) = &vax_f_format; + REAL_MODE_FORMAT (DFmode) = (TARGET_G_FLOAT ? &vax_g_format : &vax_d_format); } /* Generate the assembly code for function entry. FILE is a stdio |