> -----Original Message----- > From: Claudio Bantaloukas <[email protected]> > Sent: 24 November 2025 18:01 > To: Gcc Patches ML <[email protected]> > Cc: Alex Coplan <[email protected]>; Alice Carlotti > <[email protected]>; Andrew Pinski > <[email protected]>; Kyrylo Tkachov > <[email protected]>; Richard Earnshaw <[email protected]>; > Tamar Christina <[email protected]>; Wilco Dijkstra > <[email protected]>; Claudio Bantaloukas > <[email protected]> > Subject: [PATCH v3 1/9] aarch64: add tests for sme mfloat8 luti functions > > > These functions could already support svmfloat8_t types but were missing > tests. > This change uses the similar ones for uint8. >
OK. Thanks, Tamar > gcc/testsuite/ > * gcc.target/aarch64/sme2/acle-asm/luti2_mf8_x2.c: New test. > * gcc.target/aarch64/sme2/acle-asm/luti2_mf8_x4.c: Likewise. > * gcc.target/aarch64/sme2/acle-asm/luti2_mf8.c: Likewise. > * gcc.target/aarch64/sme2/acle-asm/luti4_mf8_x2.c: Likewise. > * gcc.target/aarch64/sme2/acle-asm/luti4_mf8.c: Likewise. > --- > .../aarch64/sme2/acle-asm/luti2_mf8.c | 48 ++++++++++++++++ > .../aarch64/sme2/acle-asm/luti2_mf8_x2.c | 50 +++++++++++++++++ > .../aarch64/sme2/acle-asm/luti2_mf8_x4.c | 56 +++++++++++++++++++ > .../aarch64/sme2/acle-asm/luti4_mf8.c | 48 ++++++++++++++++ > .../aarch64/sme2/acle-asm/luti4_mf8_x2.c | 50 +++++++++++++++++ > 5 files changed, 252 insertions(+) > create mode 100644 gcc/testsuite/gcc.target/aarch64/sme2/acle- > asm/luti2_mf8.c > create mode 100644 gcc/testsuite/gcc.target/aarch64/sme2/acle- > asm/luti2_mf8_x2.c > create mode 100644 gcc/testsuite/gcc.target/aarch64/sme2/acle- > asm/luti2_mf8_x4.c > create mode 100644 gcc/testsuite/gcc.target/aarch64/sme2/acle- > asm/luti4_mf8.c > create mode 100644 gcc/testsuite/gcc.target/aarch64/sme2/acle- > asm/luti4_mf8_x2.c
