diff mbox series

RISC-V: Fix -march error of zhinxmin testcases

Message ID 20230818025911.1281907-1-lehua.ding@rivai.ai
State New
Headers show
Series RISC-V: Fix -march error of zhinxmin testcases | expand

Commit Message

Lehua Ding Aug. 18, 2023, 2:59 a.m. UTC
This little patch fixs the -march error of a zhinxmin testcase I added earlier
and an old zhinxmin testcase, since these testcases are for zhinxmin extension
and not zfhmin extension.

---
 gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-3.c | 2 +-
 gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-4.c | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

Comments

Robin Dapp Aug. 18, 2023, 6:39 a.m. UTC | #1
> This little patch fixs the -march error of a zhinxmin testcase I added earlier
> and an old zhinxmin testcase, since these testcases are for zhinxmin extension
> and not zfhmin extension.

Arg, I should have noticed that ;)
OK, of course.

Regards
 Robin
Lehua Ding Aug. 18, 2023, 7:16 a.m. UTC | #2
On 2023/8/18 14:39, Robin Dapp wrote:
>> This little patch fixs the -march error of a zhinxmin testcase I added earlier
>> and an old zhinxmin testcase, since these testcases are for zhinxmin extension
>> and not zfhmin extension.
> 
> Arg, I should have noticed that ;)
> OK, of course.
> 
> Regards
>   Robin
> 

Committed, thanks Robin.
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-3.c b/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-3.c
index 7a43641a5a6..939b3787383 100644
--- a/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-3.c
+++ b/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-3.c
@@ -1,5 +1,5 @@ 
 /* { dg-do compile } */
-/* { dg-options "-march=rv64if_zfhmin -mabi=lp64f -O" } */
+/* { dg-options "-march=rv64i_zhinxmin -mabi=lp64 -O" } */
 
 int foo1 (_Float16 a, _Float16 b)
 {
diff --git a/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-4.c b/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-4.c
index 4ac49228898..ebc615a483f 100644
--- a/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-4.c
+++ b/gcc/testsuite/gcc.target/riscv/_Float16-zhinxmin-4.c
@@ -1,11 +1,12 @@ 
 /* { dg-do compile } */
-/* { dg-options "-march=rv64if_zfhmin -mabi=lp64 -O3 -mcmodel=medany" } */
+/* { dg-options "-march=rv64i_zhinxmin -mabi=lp64 -O3 -mcmodel=medany" } */
 /* { dg-final { check-function-bodies "**" "" } } */
 
 /* Make sure zfhmin behaves the same way as zfh. */
 /*
 ** foo: { target { no-opts "-flto" } }
-**   lh\ta0,\.LC0
+**   lla\ta[0-9]+,\.LC0
+**   lhu\ta[0-9]+,0\(a[0-9]+\)
 **   ...
 */
 _Float16 foo() { return 0.8974; }