[clang] [Clang][AArch64] Add customisable immediate range checking to NEON (PR #100278)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 25 08:21:28 PDT 2024
================
@@ -1573,7 +1573,7 @@ void SVEEmitter::createTypeFlags(raw_ostream &OS) {
OS << " " << KV.getKey() << " = " << KV.getValue() << ",\n";
OS << "#endif\n\n";
- OS << "#ifdef LLVM_GET_SVE_IMMCHECKTYPES\n";
+ OS << "#ifdef LLVM_GET_ARM_INTRIN_IMMCHECKTYPES\n";
----------------
Lukacma wrote:
I feel that with immediate check types now being shared between neon and sve and sme, This code should be generated in different file from other SVE typeflags. Probably, the best way to go about it would be better to create new "Emit" function in SVEEmitter.
https://github.com/llvm/llvm-project/pull/100278
More information about the cfe-commits
mailing list