public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/vendors/redhat/heads/gcc-8-branch)] aarch64: Fix ICE in aarch64_add_offset_1_temporaries [PR100302]
@ 2021-05-14 14:56 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2021-05-14 14:56 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:47316972d8f81363903b39fbe5313c5b013b09e7

commit 47316972d8f81363903b39fbe5313c5b013b09e7
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Apr 29 11:34:50 2021 +0200

    aarch64: Fix ICE in aarch64_add_offset_1_temporaries [PR100302]
    
    In PR94121 I've changed aarch64_add_offset_1 to use absu_hwi instead of
    abs_hwi because offset can be HOST_WIDE_INT_MIN.  As can be seen with
    the testcase below, aarch64_add_offset_1_temporaries suffers from the same
    problem and should be in sync with aarch64_add_offset_1, i.e. for
    HOST_WIDE_INT_MIN it needs a temporary.
    
    2021-04-29  Jakub Jelinek  <jakub@redhat.com>
    
            PR target/100302
            * config/aarch64/aarch64.c (aarch64_add_offset_1_temporaries): Use
            absu_hwi instead of abs_hwi.
    
    (cherry picked from commit 1bb3e2c0ce6ed363c72caf814a6ba6d7b17c3e0a)

Diff:
---
 gcc/config/aarch64/aarch64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
index c1827beeaf7..4ad73220337 100644
--- a/gcc/config/aarch64/aarch64.c
+++ b/gcc/config/aarch64/aarch64.c
@@ -2566,7 +2566,7 @@ aarch64_mov128_immediate (rtx imm)
 static unsigned int
 aarch64_add_offset_1_temporaries (HOST_WIDE_INT offset)
 {
-  return abs_hwi (offset) < 0x1000000 ? 0 : 1;
+  return absu_hwi (offset) < 0x1000000 ? 0 : 1;
 }
 
 /* A subroutine of aarch64_add_offset.  Set DEST to SRC + OFFSET for


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-05-14 14:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-14 14:56 [gcc(refs/vendors/redhat/heads/gcc-8-branch)] aarch64: Fix ICE in aarch64_add_offset_1_temporaries [PR100302] Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).