We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a7b4b commit 11f09d8Copy full SHA for 11f09d8
genmc-sys/cpp/src/MiriInterface/Exploration.cpp
@@ -68,9 +68,8 @@ void MiriGenmcShim::handle_execution_start() {
68
}
69
70
auto MiriGenmcShim::handle_execution_end() -> std::unique_ptr<std::string> {
71
- // FIXME(genmc): add error handling once GenMC returns an error here.
72
- GenMCDriver::handleExecutionEnd();
73
- return {};
+ auto ret = GenMCDriver::handleExecutionEnd();
+ return ret.has_value() ? format_error(*ret) : nullptr;
74
75
76
/**** Blocking instructions ****/
0 commit comments