Mesa (master): i965/vec4: Fix broken IR annotation in debug output.

Paul Berry stereotype441 at kemper.freedesktop.org
Tue Nov 19 18:02:25 UTC 2013


Module: Mesa
Branch: master
Commit: 60b1a118e123493624324ae191d05870e95968f3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=60b1a118e123493624324ae191d05870e95968f3

Author: Paul Berry <stereotype441 at gmail.com>
Date:   Tue Nov  5 21:44:13 2013 -0800

i965/vec4: Fix broken IR annotation in debug output.

Commit 70953b5 (i965: Initialize all member variables of
vec4_instruction on construction) inadvertently added a line to the
vec4_instruction constructor setting this->ir to NULL, wiping out the
previously set value.  As a result, ever since then, the output of
INTEL_DEBUG=vs and INTEL_DEBUG=gs has been missing IR annotations.

Cc: "10.0" <mesa-stable at lists.freedesktop.org>

Reviewed-by: Eric Anholt <eric at anholt.net>

---

 src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
index 423f693..a13eafb 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
@@ -53,7 +53,6 @@ vec4_instruction::vec4_instruction(vec4_visitor *v,
    this->mlen = 0;
    this->base_mrf = 0;
    this->offset = 0;
-   this->ir = NULL;
    this->annotation = v->current_annotation;
 }
 




More information about the mesa-commit mailing list