From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 0DC7938A908A; Thu, 28 Sep 2023 17:55:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0DC7938A908A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1695923757; bh=K5EK92myzhg8wBS4tOE3mSd+j1Aa4eV3JQ+2d2O1kRQ=; h=From:To:Subject:Date:From; b=C738m+6k0CWwgfLmweLeytGQ2Q3/orY8jR13XRxuELwZULQlZA2mCxo4tdNpdyo86 HjsiOwkNZJW44bCw/BfBHOva4TF89/q6KGZMFH5Oc08DVkcYIwxrN1rKBusTAXC2kX KHgqhrs+40M4VZtbg18JLDtWicbyzSW/J76FajrI= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] x86: Use inhibit_stack_protector on tst-ifunc-isa.h X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 7e089b518463ee8b2757cc943af17ad8bfa2bdb5 X-Git-Newrev: 5c7a83308b1f71a7b3235bc8a288978f12dd696c Message-Id: <20230928175557.0DC7938A908A@sourceware.org> Date: Thu, 28 Sep 2023 17:55:57 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5c7a83308b1f71a7b3235bc8a288978f12dd696c commit 5c7a83308b1f71a7b3235bc8a288978f12dd696c Author: Adhemerval Zanella Date: Thu Aug 25 09:48:57 2022 -0300 x86: Use inhibit_stack_protector on tst-ifunc-isa.h Diff: --- sysdeps/x86/tst-ifunc-isa.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sysdeps/x86/tst-ifunc-isa.h b/sysdeps/x86/tst-ifunc-isa.h index 739388cf09..4160ddc38c 100644 --- a/sysdeps/x86/tst-ifunc-isa.h +++ b/sysdeps/x86/tst-ifunc-isa.h @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include enum isa @@ -29,7 +30,7 @@ enum isa }; enum isa -__attribute__ ((__optimize__ ("-fno-stack-protector"))) +inhibit_stack_protector get_isa (void) { if (CPU_FEATURE_ACTIVE (AVX512F)) @@ -84,7 +85,7 @@ isa_none (void) int foo (void) __attribute__ ((ifunc ("foo_ifunc"))); void * -__attribute__ ((__optimize__ ("-fno-stack-protector"))) +inhibit_stack_protector foo_ifunc (void) { switch (get_isa ())