diff options
author | Kenneth Graunke <[email protected]> | 2015-02-20 12:31:31 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-02-20 13:43:44 -0800 |
commit | b6393d70402a60c124c1884d8d0cc1dc6a9b4ca5 (patch) | |
tree | a9be20e7c04d1c695fc4c6fc502f573662782b7f /src/glsl | |
parent | bef38f62e026c5bce5073f82f2797151f941b586 (diff) |
nir: Fix the Mesa build without -DDEBUG.
With -DDEBUG -UNDEBUG, this assert uses reg_state::stack_size, which
doesn't exist, breaking the build:
assert(state->states[index].index < state->states[index].stack_size);
Switch it to ifndef NDEBUG, so the field will exist if the assertion
actually generates code.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/nir/nir_to_ssa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/nir/nir_to_ssa.c b/src/glsl/nir/nir_to_ssa.c index dbe1699c54c..47cf45393e0 100644 --- a/src/glsl/nir/nir_to_ssa.c +++ b/src/glsl/nir/nir_to_ssa.c @@ -134,7 +134,7 @@ typedef struct { nir_ssa_def **stack; int index; unsigned num_defs; /** < used to add indices to debug names */ -#ifdef DEBUG +#ifndef NDEBUG unsigned stack_size; #endif } reg_state; @@ -489,7 +489,7 @@ init_rewrite_state(nir_function_impl *impl, rewrite_state *state) state->states[reg->index].stack = ralloc_array(state->states, nir_ssa_def *, stack_size); -#ifdef DEBUG +#ifndef NDEBUG state->states[reg->index].stack_size = stack_size; #endif state->states[reg->index].index = -1; |