================ @@ -2647,6 +2648,38 @@ RValue CIRGenFunction::emitBuiltinExpr(const GlobalDecl &gd, unsigned builtinID, return getUndefRValue(e->getType()); } +std::optional<mlir::Value> +CIRGenFunction::emitARMBuiltinExpr(unsigned builtinID, const CallExpr *expr, ---------------- andykaylor wrote:
This is going to eventually be too big for this file. What we've been doing up to this point is creating a skeleton of the target-specific builtin handling with all of the structure it will eventually need and calls to `errorNYI` for the parts that are missing. Classic codegen has 32-bit ARM support in the same file as AArch64. I don't know if that's because they actually share code or if it's just a historical accident. @banach-space Do you have a preference here? https://github.com/llvm/llvm-project/pull/204360 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
