[clang] [llvm] [SVE2.1][Clang][LLVM]Int/FP reduce builtin in Clang and LLVM intrinsic (PR #69926)
Sander de Smalen via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 2 01:15:33 PDT 2023
================
@@ -1224,7 +1233,27 @@ void SVEEmitter::createHeader(raw_ostream &OS) {
OS << "typedef __SVBFloat16_t svbfloat16_t;\n";
- OS << "#include <arm_bf16.h>\n";
+ OS << "#include <arm_bf16.h>\n\n";
+
+ OS << "typedef __attribute__((vector_size (16))) int8_t __sve_int8x16_t;\n";
----------------
sdesmalen-arm wrote:
These types are unused and can be removed.
https://github.com/llvm/llvm-project/pull/69926
More information about the cfe-commits
mailing list