Skip to content
Snippets Groups Projects
Commit 383a22d8 authored by Lukáš Korenčik's avatar Lukáš Korenčik
Browse files

ra: Die if a boot error is encountered.

parent b439b237
No related branches found
No related tags found
No related merge requests found
......@@ -21,11 +21,8 @@ void ce_t::_create_ctx( dbg_ctx_t &dbg_ctx, mc::Job &job )
{
auto trace = job.ce_trace();
if ( job.result() == mc::Result::BootError ) {
dbg::setup::boot( dbg_ctx );
trace.bootinfo = dbg_ctx._info;
trace.labels = dbg_ctx._trace;
}
if ( job.result() == mc::Result::BootError )
UNREACHABLE( "Refinement encountered an unexpected boot error." );
job.dbg_fill( dbg_ctx );
dbg_ctx.load( trace.final );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment