mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
freedreno/ir3: ignore return jump
I think this should also always only occur at the end of a BB (by definition), and the BB successor should be the end block. Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
c9b1cc33df
commit
82c71b09d5
1 changed files with 1 additions and 0 deletions
|
|
@ -2599,6 +2599,7 @@ emit_jump(struct ir3_context *ctx, nir_jump_instr *jump)
|
|||
switch (jump->type) {
|
||||
case nir_jump_break:
|
||||
case nir_jump_continue:
|
||||
case nir_jump_return:
|
||||
/* I *think* we can simply just ignore this, and use the
|
||||
* successor block link to figure out where we need to
|
||||
* jump to for break/continue
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue