pan/mdg: Assert that we don't see unknown jumps

I still don't understand why we don't see continues. But in case we do, scream
loudly so it can't be fixed.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14888>
This commit is contained in:
Alyssa Rosenzweig 2022-02-04 18:25:21 -05:00 committed by Marge Bot
parent 8b70e7491a
commit 0e726d918f
1 changed files with 1 additions and 2 deletions

View File

@ -2538,8 +2538,7 @@ emit_jump(compiler_context *ctx, nir_jump_instr *instr)
}
default:
DBG("Unknown jump type %d\n", instr->type);
break;
unreachable("Unhandled jump");
}
}