[clang] [Sparc][clang] Match GCC's SPARC V8 vector return convention (PR #222264)
Folkert de Vries via cfe-commits
cfe-commits at lists.llvm.org
Sun Sep 13 09:26:20 PDT 2026
================
@@ -50,3 +50,77 @@ t(long double _Complex a)
{
return 0;
}
+
+typedef char v4i8 __attribute__((vector_size(4)));
+typedef char v8i8 __attribute__((vector_size(8)));
+typedef char v16i8 __attribute__((vector_size(16)));
----------------
folkertdev wrote:
maybe add `v1i32` and `v2i32` variants too?
https://github.com/llvm/llvm-project/pull/222264
More information about the cfe-commits
mailing list