https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102143
Bug ID: 102143 Summary: ABI incompatibility with clang when passing 32bit vectors on 32bit i686 Product: gcc Version: 12.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: ubizjak at gmail dot com Target Milestone: --- Following testcase: --cut here-- typedef short __v2hi __attribute__((__vector_size__ (4))); __v2hi foo (__v2hi x, __v2hi y) { return x + y; } --cut here-- exhibits ABI incompatibility with clang when passing 32bit vectors on 32bit i686. gcc-12 compiles with "-O2 -msse2" to: foo: movd 4(%esp), %xmm0 movd 8(%esp), %xmm1 paddw %xmm1, %xmm0 movd %xmm0, %eax ret (gcc before version 12 uses the same ABI). while clang-11 compiles the testacse to: foo: paddw %xmm1, %xmm0 retl So, clang is passing 32bit vectors via vector registers, while gcc is passing them like integer values in memory and returns them in integer return register.