From: Jan Hubicka Date: Tue, 6 May 2025 10:07:15 +0000 (+0200) Subject: Fix i386 bootstrap on non-Windows platforms X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=673d446894c063c92cafce9ba41340c82e960a11;p=thirdparty%2Fgcc.git Fix i386 bootstrap on non-Windows platforms * config/i386/i386.cc (ix86_tls_index): Add ifdef. --- diff --git a/gcc/config/i386/i386.cc b/gcc/config/i386/i386.cc index f28c92a9d3a..89f518c86b5 100644 --- a/gcc/config/i386/i386.cc +++ b/gcc/config/i386/i386.cc @@ -12320,6 +12320,7 @@ get_thread_pointer (machine_mode tp_mode, bool to_reg) static GTY(()) rtx ix86_tls_index_symbol; +#if TARGET_WIN32_TLS static rtx ix86_tls_index (void) { @@ -12331,6 +12332,7 @@ ix86_tls_index (void) else return ix86_tls_index_symbol; } +#endif /* Construct the SYMBOL_REF for the tls_get_addr function. */