From: Martin Liska Date: Tue, 30 Aug 2022 08:46:26 +0000 (+0200) Subject: s390: fix build on 32-bit hosts X-Git-Tag: basepoints/gcc-14~4943 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34ad7155fe2a4a5d0b1815c79ce8b2af4c772c9e;p=thirdparty%2Fgcc.git s390: fix build on 32-bit hosts Fixes build on i686: gcc/config/s390/s390.cc: In function 'bool s390_rtx_costs(rtx, machine_mode, int, int, int*, bool)': gcc/config/s390/s390.cc:3728:63: error: cannot convert 'long int*' to 'long long int*' gcc/ChangeLog: * config/s390/s390.cc (s390_rtx_costs): Use proper type as argument. --- diff --git a/gcc/config/s390/s390.cc b/gcc/config/s390/s390.cc index 076c97a8b225..3ae586c60eb5 100644 --- a/gcc/config/s390/s390.cc +++ b/gcc/config/s390/s390.cc @@ -3724,7 +3724,7 @@ s390_rtx_costs (rtx x, machine_mode mode, int outer_code, case MEM: { rtx address = XEXP (dest, 0); rtx tmp; - long tmp2; + HOST_WIDE_INT tmp2; if (s390_loadrelative_operand_p (address, &tmp, &tmp2)) *total = COSTS_N_INSNS (1); else