]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
RISC-V: Fix testcase missing arch attribute
authorEdwin Lu <ewlu@rivosinc.com>
Wed, 17 Jul 2024 00:43:45 +0000 (17:43 -0700)
committerEdwin Lu <ewlu@rivosinc.com>
Wed, 17 Jul 2024 17:19:23 +0000 (10:19 -0700)
The C + F extention implies the zcf extension on rv32. Add missing zcf
extension for the rv32 target.

gcc/testsuite/ChangeLog:

* gcc.target/riscv/target-attr-16.c: Update expected assembly

Signed-off-by: Edwin Lu <ewlu@rivosinc.com>
gcc/testsuite/gcc.target/riscv/target-attr-16.c

index 1c7badccdeee3f9778d1dedc67f33d2b91e79cc4..c6b626d0c6ced5eaa8f8e2ddc71093ec58501e1e 100644 (file)
@@ -24,5 +24,5 @@ void bar (void)
 {
 }
 
-/* { dg-final { scan-assembler-times ".option arch, rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_zaamo1p0_zalrsc1p0_zca1p0_zcd1p0_zba1p0_zbb1p0" 4 { target { rv32 } } } } */
+/* { dg-final { scan-assembler-times ".option arch, rv32i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_zaamo1p0_zalrsc1p0_zca1p0_zcd1p0_zcf1p0_zba1p0_zbb1p0" 4 { target { rv32 } } } } */
 /* { dg-final { scan-assembler-times ".option arch, rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0_zaamo1p0_zalrsc1p0_zca1p0_zcd1p0_zba1p0_zbb1p0" 4 { target { rv64 } } } } */