From 2095ac985b3a070a19ddf12dbab51ab21e345514 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Wed, 27 Sep 2023 06:19:59 +0200 Subject: [PATCH] fixes forgotten removal of pctrace in core_complex --- src/sysc/core_complex.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/sysc/core_complex.cpp b/src/sysc/core_complex.cpp index a11c901..78eb36e 100644 --- a/src/sysc/core_complex.cpp +++ b/src/sysc/core_complex.cpp @@ -50,7 +50,6 @@ #include #include #include -#include // clang-format on @@ -283,10 +282,6 @@ void core_complex::before_end_of_elaboration() { auto *plugin = new iss::plugin::cycle_estimate(filename); cpu->vm->register_plugin(*plugin); plugin_list.push_back(plugin); - } else if (plugin_name == "pctrace") { - auto *plugin = new iss::plugin::pctrace(filename); - cpu->vm->register_plugin(*plugin); - plugin_list.push_back(plugin); } else { #ifndef WIN32 std::array a{{filename.c_str()}};