From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 4C3D03954C55; Thu, 8 Dec 2022 10:57:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4C3D03954C55 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670497073; bh=K7Kbo3a0M/i4AXQvvAYkEhYQF5FhlnpyF0fOrPdrS9c=; h=From:To:Subject:Date:From; b=MlJZBsDEWJff1Nwp/nTxqXDQoaJt9IpUJXS9xDrd0HLhn5ZjLFN7GdDlhTU9ZK26G SF7dQcKMlxxxfyg70ABCUcGEgvpWS0ofn3LdwYqUA9fR1aBjju/BsBNv+MrUriDp2C q7at0q0/bX33gXDRmUW/mQzC5s/jX1Nwn1GjrDCI= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4552] [testsuite] [arm/aarch64] -fno-short-enums for auto-init-[12].c X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/heads/master X-Git-Oldrev: 716c2d08893110f186f0fb94849524b1acf9dd02 X-Git-Newrev: c690779637e1c4b1b7768d3e76c9dd4e2aa49f6a Message-Id: <20221208105753.4C3D03954C55@sourceware.org> Date: Thu, 8 Dec 2022 10:57:53 +0000 (GMT) List-Id: https://gcc.gnu.org/g:c690779637e1c4b1b7768d3e76c9dd4e2aa49f6a commit r13-4552-gc690779637e1c4b1b7768d3e76c9dd4e2aa49f6a Author: Alexandre Oliva Date: Thu Dec 8 07:50:30 2022 -0300 [testsuite] [arm/aarch64] -fno-short-enums for auto-init-[12].c On arm-eabi, and possibly on other platforms, -fshort-enums is enabled by default, which breaks some tests' expectations as to enum sizes with DEFERRED_INIT. Disable short enums so that the expectations are met. for gcc/testsuite/ChangeLog * c-c++-common/auto-init-1.c: Add -fno-short-enums. * c-c++-common/auto-init-2.c: Likewise. * gcc.dg/debug/btf/btf-enum-1.c: Likewise. Diff: --- gcc/testsuite/c-c++-common/auto-init-1.c | 2 +- gcc/testsuite/c-c++-common/auto-init-2.c | 2 +- gcc/testsuite/gcc.dg/debug/btf/btf-enum-1.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/testsuite/c-c++-common/auto-init-1.c b/gcc/testsuite/c-c++-common/auto-init-1.c index df04358728b..3e6a4984eea 100644 --- a/gcc/testsuite/c-c++-common/auto-init-1.c +++ b/gcc/testsuite/c-c++-common/auto-init-1.c @@ -1,6 +1,6 @@ /* Verify zero initialization for integer and pointer type automatic variables. */ /* { dg-do compile { target { ilp32 || lp64 } } } */ -/* { dg-options "-ftrivial-auto-var-init=zero -fdump-tree-gimple" } */ +/* { dg-options "-ftrivial-auto-var-init=zero -fno-short-enums -fdump-tree-gimple" } */ #ifndef __cplusplus # define bool _Bool diff --git a/gcc/testsuite/c-c++-common/auto-init-2.c b/gcc/testsuite/c-c++-common/auto-init-2.c index 6ac63bb1dda..d356e508b83 100644 --- a/gcc/testsuite/c-c++-common/auto-init-2.c +++ b/gcc/testsuite/c-c++-common/auto-init-2.c @@ -1,6 +1,6 @@ /* Verify pattern initialization for integer and pointer type automatic variables. */ /* { dg-do compile { target { ilp32 || lp64 } } } */ -/* { dg-options "-ftrivial-auto-var-init=pattern -fdump-tree-gimple" } */ +/* { dg-options "-ftrivial-auto-var-init=pattern -fno-short-enums -fdump-tree-gimple" } */ #ifndef __cplusplus # define bool _Bool diff --git a/gcc/testsuite/gcc.dg/debug/btf/btf-enum-1.c b/gcc/testsuite/gcc.dg/debug/btf/btf-enum-1.c index 7e940529f1b..2887cb1c5f2 100644 --- a/gcc/testsuite/gcc.dg/debug/btf/btf-enum-1.c +++ b/gcc/testsuite/gcc.dg/debug/btf/btf-enum-1.c @@ -1,7 +1,7 @@ /* Test BTF generation for enums. */ /* { dg-do compile } */ -/* { dg-options "-O0 -gbtf -dA" } */ +/* { dg-options "-O0 -gbtf -fno-short-enums -dA" } */ /* { dg-final { scan-assembler-times "\[\t \]0x6000004\[\t \]+\[^\n\]*btt_info" 1 } } */ /* { dg-final { scan-assembler-times "\[\t \]0x86000003\[\t \]+\[^\n\]*btt_info" 1 } } */