Re: [PATCH 2/6] tests/tcg/aarch64: Fix test architecture specification

2024-06-26 Thread Alex Bennée
Akihiko Odaki writes: > sme-smopa-2.c requires sme-i16i64 but the compiler option used not to > specify it. Instead, the extension was specified with the inline > assembly, resulting in mixing assembly code targeting sme-i1664 and C > code that does not target sme-i1664. > > clang version 18.1.6

Re: [PATCH 2/6] tests/tcg/aarch64: Fix test architecture specification

2024-06-26 Thread Alex Bennée
Akihiko Odaki writes: > sme-smopa-2.c requires sme-i16i64 but the compiler option used not to > specify it. Instead, the extension was specified with the inline > assembly, resulting in mixing assembly code targeting sme-i1664 and C > code that does not target sme-i1664. > > clang version 18.1.6

[PATCH 2/6] tests/tcg/aarch64: Fix test architecture specification

2024-06-26 Thread Akihiko Odaki
sme-smopa-2.c requires sme-i16i64 but the compiler option used not to specify it. Instead, the extension was specified with the inline assembly, resulting in mixing assembly code targeting sme-i1664 and C code that does not target sme-i1664. clang version 18.1.6 does not support such mixing so pro