diff options
author | Alexandre Oliva <oliva@adacore.com> | 2022-12-08 07:50:30 -0300 |
---|---|---|
committer | Alexandre Oliva <oliva@gnu.org> | 2022-12-08 07:50:30 -0300 |
commit | c690779637e1c4b1b7768d3e76c9dd4e2aa49f6a (patch) | |
tree | 9b6d36850c0eafb48dd0ab017a4621e6f0415d36 /gcc | |
parent | 716c2d08893110f186f0fb94849524b1acf9dd02 (diff) | |
download | gcc-c690779637e1c4b1b7768d3e76c9dd4e2aa49f6a.zip gcc-c690779637e1c4b1b7768d3e76c9dd4e2aa49f6a.tar.gz gcc-c690779637e1c4b1b7768d3e76c9dd4e2aa49f6a.tar.bz2 |
[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.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/c-c++-common/auto-init-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/auto-init-2.c | 2 | ||||
-rw-r--r-- | 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 df04358..3e6a498 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 6ac63bb..d356e50 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 7e94052..2887cb1 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 } } */ |