diff options
author | Jason Ekstrand <[email protected]> | 2015-06-24 21:38:49 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-06-24 21:38:49 -0700 |
commit | 845002e163e394efa9536e726d09f78b2497606e (patch) | |
tree | 1739c2b7c8b045b1cd1a55c0467458ebd4362bd8 /src | |
parent | 2ecac045a4140176b402dbbde44ad06530bea2e2 (diff) |
i965/nir: Handle returns as long as they're at the end of a function
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_nir.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp index a378019af5b..46c30fcae26 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp @@ -1774,6 +1774,12 @@ fs_visitor::nir_emit_jump(const fs_builder &bld, nir_jump_instr *instr) bld.emit(BRW_OPCODE_CONTINUE); break; case nir_jump_return: + /* This has to be the last block in the shader. We don't handle + * early returns. + */ + assert(nir_cf_node_next(&instr->instr.block->cf_node) == NULL && + instr->instr.block->cf_node.parent->type == nir_cf_node_function); + break; default: unreachable("unknown jump"); } |