aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2016-08-30 11:36:01 +0100
committerAnuj Phogat <[email protected]>2016-08-30 13:47:42 -0700
commite2627e34bace0e8aa94caf49b1c8be09adc94711 (patch)
tree54efe40e4850ade3a645cef0904b1de2e27b7145
parent352f0d9180b7157465829fb49560448cfa3953af (diff)
glsl: fix unreachable() typo
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Anuj Phogat <[email protected]>
-rw-r--r--src/compiler/glsl/ir_print_visitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ir_print_visitor.cpp b/src/compiler/glsl/ir_print_visitor.cpp
index 0dd1c3527e7..4cb8069a56f 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, ")");
}