aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-06-14 23:21:24 -0700
committerMatt Turner <[email protected]>2014-06-17 10:18:36 -0700
commit73ab06f9c55cf0fa1e85be8a595d4eb2e326d34d (patch)
tree99be3134b7a891f50308c5c4a72d88c104903ed0 /src/mesa/drivers
parentf3aecefa9930ce7dbdabdeefee0bd183172b586f (diff)
i965/blorp: Mark branch unreachable to silence uninitialized var warning.
Reviewed-by: Tapani Pälli <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/i965/brw_blorp_clear.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp
index 064a5fbce4b..17d93251732 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp
+++ b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp
@@ -340,6 +340,7 @@ brw_blorp_clear_params::brw_blorp_clear_params(struct brw_context *brw,
break;
default:
assert(!"Unexpected sample count for fast clear");
+ unreachable();
break;
}
y_scaledown = 2;