summaryrefslogtreecommitdiff
path: root/gcc/optabs.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-03-06 16:18:41 -0800
committerYamaArashi <shadow962@live.com>2016-03-06 16:18:41 -0800
commitce590c846da59bd8d6fa3232689b776716c8c4af (patch)
tree6cee3a742d6d7bfd80f93b624ffe45a2d3ae3e29 /gcc/optabs.c
parent60addc9c2c94b571f9ccfa4b4423aed3be886735 (diff)
remove unused modes
Diffstat (limited to 'gcc/optabs.c')
-rwxr-xr-xgcc/optabs.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c
index 8aaed1b..515e4c5 100755
--- a/gcc/optabs.c
+++ b/gcc/optabs.c
@@ -3622,7 +3622,7 @@ expand_float (to, from, unsignedp)
#endif
/* No hardware instruction available; call a library routine to convert from
- SImode, DImode, or TImode into SFmode, DFmode, XFmode, or TFmode. */
+ SImode or DImode into SFmode or DFmode. */
{
rtx libfcn;
rtx insns;
@@ -3643,8 +3643,6 @@ expand_float (to, from, unsignedp)
libfcn = floatsisf_libfunc;
else if (GET_MODE (from) == DImode)
libfcn = floatdisf_libfunc;
- else if (GET_MODE (from) == TImode)
- libfcn = floattisf_libfunc;
else
abort ();
}
@@ -3654,8 +3652,6 @@ expand_float (to, from, unsignedp)
libfcn = floatsidf_libfunc;
else if (GET_MODE (from) == DImode)
libfcn = floatdidf_libfunc;
- else if (GET_MODE (from) == TImode)
- libfcn = floattidf_libfunc;
else
abort ();
}
@@ -3844,8 +3840,6 @@ expand_fix (to, from, unsignedp)
libfcn = unsignedp ? fixunssfsi_libfunc : fixsfsi_libfunc;
else if (GET_MODE (to) == DImode)
libfcn = unsignedp ? fixunssfdi_libfunc : fixsfdi_libfunc;
- else if (GET_MODE (to) == TImode)
- libfcn = unsignedp ? fixunssfti_libfunc : fixsfti_libfunc;
else
abort ();
}
@@ -3855,8 +3849,6 @@ expand_fix (to, from, unsignedp)
libfcn = unsignedp ? fixunsdfsi_libfunc : fixdfsi_libfunc;
else if (GET_MODE (to) == DImode)
libfcn = unsignedp ? fixunsdfdi_libfunc : fixdfdi_libfunc;
- else if (GET_MODE (to) == TImode)
- libfcn = unsignedp ? fixunsdfti_libfunc : fixdfti_libfunc;
else
abort ();
}
@@ -3978,7 +3970,7 @@ init_integral_libfuncs (optable, opname, suffix)
register char *opname;
register int suffix;
{
- init_libfuncs (optable, SImode, TImode, opname, suffix);
+ init_libfuncs (optable, SImode, DImode, opname, suffix);
}
/* Initialize the libfunc fields of an entire group of entries in some
@@ -3992,7 +3984,7 @@ init_floating_libfuncs (optable, opname, suffix)
register char *opname;
register int suffix;
{
- init_libfuncs (optable, SFmode, TFmode, opname, suffix);
+ init_libfuncs (optable, SFmode, DFmode, opname, suffix);
}