diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 1faae3c7259..1fae5864fc9 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -1158,7 +1158,6 @@ public: { this->ir_type = ir_type_loop_jump; this->mode = mode; - this->loop = loop; } virtual ir_loop_jump *clone(void *mem_ctx, struct hash_table *) const; @@ -1182,9 +1181,6 @@ public: /** Mode selector for the jump instruction. */ enum jump_mode mode; -private: - /** Loop containing this break instruction. */ - ir_loop *loop; }; /**