https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112323
Bug ID: 112323 Summary: aarch64: Missed operator support on ARM SVE intrinsic type Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: juzhe.zhong at rivai dot ai Target Milestone: --- Consider this following case: #include "arm_sve.h" svint8_t foo (svint8_t a, svint8_t b) { return a + b; } https://godbolt.org/z/nMMxWcE4E Clang is able to recognize "+" of svint8_t wheras GCC is not. Any plan to support operator on ARM SVE type?