From: Jeff Law Date: Fri, 25 Aug 2023 22:23:06 +0000 (-0600) Subject: [committed] RISC-V: Fix minor testsuite problem with zicond X-Git-Tag: basepoints/gcc-15~6644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cd2b73079bac374ce1c542b9c9e354e00a8713d;p=thirdparty%2Fgcc.git [committed] RISC-V: Fix minor testsuite problem with zicond I thought I had already fixed this, but clearly if I did, I didn't include it in any upstream commits. With -Og the optimizers are hindered in various ways and this prevents using zicond. So skip this test with -Og (it was already being skipped at -O0). gcc/testsuite * gcc.target/riscv/zicond-primitiveSemantics.c: Disable for -Og. --- diff --git a/gcc/testsuite/gcc.target/riscv/zicond-primitiveSemantics.c b/gcc/testsuite/gcc.target/riscv/zicond-primitiveSemantics.c index 76c5019a992f..47d4e4c5683a 100644 --- a/gcc/testsuite/gcc.target/riscv/zicond-primitiveSemantics.c +++ b/gcc/testsuite/gcc.target/riscv/zicond-primitiveSemantics.c @@ -1,7 +1,7 @@ /* { dg-do compile } */ /* { dg-options "-march=rv64gc_zicond -mabi=lp64d" { target { rv64 } } } */ /* { dg-options "-march=rv32gc_zicond -mabi=ilp32f" { target { rv32 } } } */ -/* { dg-skip-if "" { *-*-* } {"-O0"} } */ +/* { dg-skip-if "" { *-*-* } {"-O0" "-Og"} } */ long primitiveSemantics_00(long a, long b) { return a == 0 ? 0 : b; }