From b5ea9991fe19378ecf2daecbdf3dc1dfa96e935a Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Thu, 6 Nov 2025 17:30:55 -0800 Subject: [PATCH] Undo removal of delete --- passes/techmap/abc.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc index 6e41b627f..fb8b0bc6d 100644 --- a/passes/techmap/abc.cc +++ b/passes/techmap/abc.cc @@ -304,6 +304,7 @@ struct AbcModuleState { AbcModuleState(const AbcConfig &config, FfInitVals &initvals, int state_index) : run_abc(config), state_index(state_index), initvals(initvals) {} + AbcModuleState(AbcModuleState&&) = delete; int map_signal(const AbcSigMap &assign_map, RTLIL::SigBit bit, gate_type_t gate_type = G(NONE), int in1 = -1, int in2 = -1, int in3 = -1, int in4 = -1); void mark_port(const AbcSigMap &assign_map, RTLIL::SigSpec sig);