mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-12 05:00:28 +01:00
glsl: fix unreachable(!"") to unreachable("")
Correct error with commit 151fb1e where assert was renamed
to unreachable without removing ! from string argument.
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
938b17940f
commit
ce83a6ec81
1 changed files with 1 additions and 1 deletions
|
|
@ -139,7 +139,7 @@ calculate_iterations(ir_rvalue *from, ir_rvalue *to, ir_rvalue *increment,
|
|||
iter = new(mem_ctx) ir_constant(double(iter_value + bias[i]));
|
||||
break;
|
||||
default:
|
||||
unreachable(!"Unsupported type for loop iterator.");
|
||||
unreachable("Unsupported type for loop iterator.");
|
||||
}
|
||||
|
||||
ir_expression *const mul =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue