[llvm] [CodeGen] Port WasmEHPrepare to new pass manager (PR #74435)

Heejin Ahn via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 6 11:06:57 PST 2023


================
@@ -88,10 +89,12 @@
 
 using namespace llvm;
 
-#define DEBUG_TYPE "wasmehprepare"
+#define DEBUG_TYPE "wasm-eh-prepare"
 
 namespace {
-class WasmEHPrepare : public FunctionPass {
+class WasmEHPrepareImpl {
----------------
aheejin wrote:

Ah OK, I think I now get it. This PR makes `WasmEHPrepare` supported in _both_ the old and new PM. I thought we are removing the old PM support, which was the source of the confusion.. Thanks for the info.

https://github.com/llvm/llvm-project/pull/74435


More information about the llvm-commits mailing list