diff options
Diffstat (limited to 'gcc/varasm.c')
-rwxr-xr-x | gcc/varasm.c | 4 |
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; |