[Mesa-stable] [PATCH 01/15] glsl: Fix cut-and-paste bug in hierarchical visitor ir_expression::accept
Ian Romanick
idr at freedesktop.org
Thu Sep 15 22:12:34 UTC 2016
From: Ian Romanick <ian.d.romanick at intel.com>
At this point in the code, s must be visit_continue. If the child
returned visit_stop, visit_stop is the only correct thing to return.
Found by inspection.
Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Cc: mesa-stable at lists.freedesktop.org
---
src/compiler/glsl/ir_hv_accept.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/compiler/glsl/ir_hv_accept.cpp b/src/compiler/glsl/ir_hv_accept.cpp
index 213992a..5cc6a34 100644
--- a/src/compiler/glsl/ir_hv_accept.cpp
+++ b/src/compiler/glsl/ir_hv_accept.cpp
@@ -147,7 +147,7 @@ ir_expression::accept(ir_hierarchical_visitor *v)
goto done;
case visit_stop:
- return s;
+ return visit_stop;
}
}
--
2.5.5
More information about the mesa-stable
mailing list