Explorar el Código

tgsi: add assertion to verify legal register file

This assertion fails with piglit glsl-vs-mov-after-deref test
because we're double freeing the memory.  It seems there's some
confusion between what's placed in the hash table and what isn't.
tags/7.8-rc1
Brian Paul hace 15 años
padre
commit
7335d8006f
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      src/gallium/auxiliary/tgsi/tgsi_sanity.c

+ 1
- 0
src/gallium/auxiliary/tgsi/tgsi_sanity.c Ver fichero

@@ -515,6 +515,7 @@ regs_hash_destroy(struct cso_hash *hash)
while (!cso_hash_iter_is_null(iter)) {
scan_register *reg = (scan_register *)cso_hash_iter_data(iter);
iter = cso_hash_erase(hash, iter);
assert(reg->file < TGSI_FILE_COUNT);
FREE(reg);
}
cso_hash_delete(hash);

Cargando…
Cancelar
Guardar