aboutsummaryrefslogtreecommitdiff
path: root/gcc/optabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r--gcc/optabs.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c
index bb3e292..0db33ca 100644
--- a/gcc/optabs.c
+++ b/gcc/optabs.c
@@ -4120,8 +4120,6 @@ expand_float (to, from, unsignedp)
}
}
-#if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
-
/* Unsigned integer, and no way to convert directly.
Convert as signed, then conditionally adjust the result. */
if (unsignedp)
@@ -4236,7 +4234,6 @@ expand_float (to, from, unsignedp)
emit_label (label);
goto done;
}
-#endif
/* No hardware instruction available; call a library routine to convert from
SImode, DImode, or TImode into SFmode, DFmode, XFmode, or TFmode. */
@@ -4387,7 +4384,6 @@ expand_fix (to, from, unsignedp)
}
}
-#if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
/* For an unsigned conversion, there is one more way to do it.
If we have a signed conversion, we generate code that compares
the real value to the largest representable positive number. If if
@@ -4467,7 +4463,6 @@ expand_fix (to, from, unsignedp)
return;
}
-#endif
/* We can't do it with an insn, so use a library call. But first ensure
that the mode of TO is at least as wide as SImode, since those are the