From 99cd0aaab72d3e73f8b2c4f3cbfb6361c6d289aa Mon Sep 17 00:00:00 2001 From: Andrew Adams Date: Mon, 30 Oct 2023 15:10:43 -0700 Subject: [PATCH] Delete unused function --- src/CodeGen_LLVM.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/CodeGen_LLVM.h b/src/CodeGen_LLVM.h index 3f1467c0e203..ed62d7992977 100644 --- a/src/CodeGen_LLVM.h +++ b/src/CodeGen_LLVM.h @@ -402,11 +402,6 @@ class CodeGen_LLVM : public IRVisitor { void visit(const Realize *) override; // @} - /** If we have to bail out of a pipeline midway, this should - * inject the appropriate target-specific cleanup code. */ - virtual void prepare_for_early_exit() { - } - /** Get the llvm type equivalent to the given halide type in the * current context. */ virtual llvm::Type *llvm_type_of(const Type &) const;