diff options
author | Jason Ekstrand <[email protected]> | 2016-02-12 11:58:06 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-03-12 15:48:36 -0800 |
commit | 2ef4754a20be5fc7a6ecc2a8b6b8041637c998c6 (patch) | |
tree | 088f92d325c29e0707e0bf0be4cb08b146399751 /src/compiler/nir/nir.c | |
parent | 41ae553fdae5d0ff687733c45b6151a45759b2fd (diff) |
nir: Add a new "param" variable mode for parameters and return variables
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.c')
-rw-r--r-- | src/compiler/nir/nir.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c index df40a554714..acb2692e2a0 100644 --- a/src/compiler/nir/nir.c +++ b/src/compiler/nir/nir.c @@ -115,6 +115,10 @@ nir_shader_add_variable(nir_shader *shader, nir_variable *var) assert(!"nir_shader_add_variable cannot be used for local variables"); break; + case nir_var_param: + assert(!"nir_shader_add_variable cannot be used for function parameters"); + break; + case nir_var_global: exec_list_push_tail(&shader->globals, &var->node); break; |