Even though scope outside the switch statement is unreachable, the compiler generates a warning, which is treated as error by Android toolchain. Fix the issue by adding dummy return statement.
Signed-off-by: Tomasz Figa <[email protected]> CC: <[email protected]> --- src/glsl/opt_vectorize.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glsl/opt_vectorize.cpp b/src/glsl/opt_vectorize.cpp index 2f71a83583b1..066e15a66447 100644 --- a/src/glsl/opt_vectorize.cpp +++ b/src/glsl/opt_vectorize.cpp @@ -229,6 +229,7 @@ write_mask_to_swizzle(unsigned write_mask) case WRITEMASK_W: return SWIZZLE_W; } unreachable("not reached"); + return 0; } /** -- 2.1.1 _______________________________________________ mesa-dev mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-dev
