summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGert Wollny <[email protected]>2017-10-17 12:36:50 +0200
committerBrian Paul <[email protected]>2018-01-24 10:34:05 -0700
commit8172b9ff48ba4d28ae1b8d87b7c24aa082237516 (patch)
tree03c52258bc0f2bebafff35e866a328f9e21f8be1
parentf2040fbe4890224b5f2b0b78318a4f5c7643b3dd (diff)
mesa/st/glsl_to_tgsi: remove now unneeded assert.
With the implementation of the tracking of the registers used in reladdr asserting that a driver calling merge_register() uses the address register is no longer needed. Reviewed-by: Brian Paul <[email protected]> Signed-off-by: Gert Wollny <[email protected]>
-rw-r--r--src/mesa/state_tracker/st_glsl_to_tgsi.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
index ec572f2739f..e855b32cc15 100644
--- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
+++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
@@ -5310,7 +5310,6 @@ glsl_to_tgsi_visitor::merge_two_dsts(void)
void
glsl_to_tgsi_visitor::merge_registers(void)
{
- assert(need_uarl);
struct lifetime *lifetimes =
rzalloc_array(mem_ctx, struct lifetime, this->next_temp);