diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/nir/nir_phi_builder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/nir/nir_phi_builder.c b/src/compiler/nir/nir_phi_builder.c index acfc771da2f..883884bb7f5 100644 --- a/src/compiler/nir/nir_phi_builder.c +++ b/src/compiler/nir/nir_phi_builder.c @@ -241,8 +241,8 @@ nir_phi_builder_value_get_block_def(struct nir_phi_builder_value *val, static int compare_blocks(const void *_a, const void *_b) { - nir_block * const * a = _a; - nir_block * const * b = _b; + const nir_block * const * a = _a; + const nir_block * const * b = _b; return (*a)->index - (*b)->index; } |