diff options
Diffstat (limited to 'gcc/config/mips/mips.md')
-rw-r--r-- | gcc/config/mips/mips.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 10b8b62..f68d454 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -4667,7 +4667,7 @@ move\\t%0,%z4\\n\\ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - offset = REAL_VALUE_LDEXP (dconst1, 31); + real_2expN (&offset, 31); if (reg1) /* turn off complaints about unreached code */ { @@ -4713,7 +4713,7 @@ move\\t%0,%z4\\n\\ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - offset = REAL_VALUE_LDEXP (dconst1, 63); + real_2expN (&offset, 63); if (reg1) /* turn off complaints about unreached code */ { @@ -4759,7 +4759,7 @@ move\\t%0,%z4\\n\\ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - offset = REAL_VALUE_LDEXP (dconst1, 31); + real_2expN (&offset, 31); if (reg1) /* turn off complaints about unreached code */ { @@ -4805,7 +4805,7 @@ move\\t%0,%z4\\n\\ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - offset = REAL_VALUE_LDEXP (dconst1, 63); + real_2expN (&offset, 63); if (reg1) /* turn off complaints about unreached code */ { |