summaryrefslogtreecommitdiff
path: root/gcc/varasm.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/varasm.c
parent60addc9c2c94b571f9ccfa4b4423aed3be886735 (diff)
remove unused modes
Diffstat (limited to 'gcc/varasm.c')
-rwxr-xr-xgcc/varasm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 3c70c4a..d8b62b8 100755
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -1819,8 +1819,7 @@ immed_double_const (i0, i1, mode)
{
register rtx r;
- if (GET_MODE_CLASS (mode) == MODE_INT
- || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
+ if (GET_MODE_CLASS (mode) == MODE_INT)
{
/* We clear out all bits that don't belong in MODE, unless they and our
sign bit are all one. So we get either a reasonable negative value
@@ -3519,7 +3518,6 @@ output_constant_pool (fnname, fndecl)
break;
case MODE_INT:
- case MODE_PARTIAL_INT:
assemble_integer (x, GET_MODE_SIZE (pool->mode), 1);
break;