From e2627e34bace0e8aa94caf49b1c8be09adc94711 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 30 Aug 2016 11:36:01 +0100 Subject: [PATCH] glsl: fix unreachable() typo Signed-off-by: Eric Engestrom Reviewed-by: Anuj Phogat --- src/compiler/glsl/ir_print_visitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/glsl/ir_print_visitor.cpp b/src/compiler/glsl/ir_print_visitor.cpp index 0dd1c35..4cb8069 100644 --- a/src/compiler/glsl/ir_print_visitor.cpp +++ b/src/compiler/glsl/ir_print_visitor.cpp @@ -344,7 +344,7 @@ void ir_print_visitor::visit(ir_texture *ir) ir->lod_info.component->accept(this); break; case ir_samples_identical: - unreachable(!"ir_samples_identical was already handled"); + unreachable("ir_samples_identical was already handled"); }; fprintf(f, ")"); } -- 2.7.4