summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-06-03 09:29:29 -0700
committerEric Anholt <eric@anholt.net>2010-06-24 15:05:21 -0700
commit2401338ef8ba73e8a0b85ea1129a8e6127842117 (patch)
tree4d6867c9c1ded33942c0ebc883de234b157b2530
parent9cd8cad9f3dc4774366193acbfc5ab22198096e7 (diff)
ir_to_mesa: Remove old monoburg structure.
-rw-r--r--ir_to_mesa.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/ir_to_mesa.h b/ir_to_mesa.h
index b05b9ebc7a..839d36964f 100644
--- a/ir_to_mesa.h
+++ b/ir_to_mesa.h
@@ -61,25 +61,6 @@ public:
ir_instruction *ir;
};
-struct mbtree {
- struct mbtree *left;
- struct mbtree *right;
- void *state;
- uint16_t op;
- class ir_to_mesa_visitor *v;
-
- /** Pointer to the ir source this tree came from for debugging */
- ir_instruction *ir;
-
- ir_to_mesa_dst_reg dst_reg;
-
- /**
- * This is the representation of this tree node's results as a
- * source register for its consumer.
- */
- ir_to_mesa_src_reg src_reg;
-};
-
void do_ir_to_mesa(exec_list *instructions);
class temp_entry : public exec_node {