diff options
Diffstat (limited to 'gcc/config/riscv/riscv.cc')
-rw-r--r-- | gcc/config/riscv/riscv.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc index f3ac0d8865f..4939d9964db 100644 --- a/gcc/config/riscv/riscv.cc +++ b/gcc/config/riscv/riscv.cc | |||
@@ -420,6 +420,15 @@ riscv_build_integer_1 (struct riscv_integer_op codes[RISCV_MAX_INTEGER_OPS], | |||
420 | /* Simply BSETI. */ | 420 | /* Simply BSETI. */ |
421 | codes[0].code = UNKNOWN; | 421 | codes[0].code = UNKNOWN; |
422 | codes[0].value = value; | 422 | codes[0].value = value; |
423 | |||
424 | /* RISC-V sign-extends all 32bit values that live in a 32bit | ||
425 | register. To avoid paradoxes, we thus need to use the | ||
426 | sign-extended (negative) representation (-1 << 31) for the | ||
427 | value, if we want to build (1 << 31) in SImode. This will | ||
428 | then expand to an LUI instruction. */ | ||
429 | if (mode == SImode && value == (HOST_WIDE_INT_1U << 31)) | ||
430 | codes[0].value = (HOST_WIDE_INT_M1U << 31); | ||
431 | |||
423 | return 1; | 432 | return 1; |
424 | } | 433 | } |
425 | 434 | ||