From: Jakub Jelinek Date: Wed, 5 Feb 2025 13:06:42 +0000 (+0100) Subject: cselib: Fix up previous patch for SPARC [PR117239] X-Git-Tag: basepoints/gcc-16~2178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6094801d6fd7849d2d95ce78f7c6ef01686b9f63;p=thirdparty%2Fgcc.git cselib: Fix up previous patch for SPARC [PR117239] Sorry, our CI bot just notified me I broke SPARC build. There are two #ifdef STACK_ADDRESS_OFFSET guarded snippets and the macro is only defined on SPARC target, so I didn't notice there was a syntax error. Fixed thusly. 2025-02-05 Jakub Jelinek PR rtl-optimization/117239 * cselib.cc (cselib_init): Remove spurious closing paren in the #ifdef STACK_ADDRESS_OFFSET specific code. --- diff --git a/gcc/cselib.cc b/gcc/cselib.cc index d18208e5144..7f1991b09c3 100644 --- a/gcc/cselib.cc +++ b/gcc/cselib.cc @@ -3394,7 +3394,7 @@ cselib_init (int record_what) #ifdef STACK_ADDRESS_OFFSET /* On SPARC take stack pointer bias into account as well. */ off += (STACK_ADDRESS_OFFSET - - FIRST_PARM_OFFSET (current_function_decl))); + - FIRST_PARM_OFFSET (current_function_decl)); #endif callmem[1] = plus_constant (Pmode, stack_pointer_rtx, off); }