]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
removed phi_out from ast_ternary since we have a place in ast_expression_common for...
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index f0e9e6b0e480d4f1f1afcd5f48c5e0ecc1213c7a..00802ca3168aca62fbab474dc20111b78a3465b0 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -398,9 +398,6 @@ struct ast_ternary_s
     /* It's all just 'expressions', since an ast_block is one too. */
     ast_expression *on_true;
     ast_expression *on_false;
-    /* After a ternary expression we find ourselves in a new IR block
-     * and start with a PHI node */
-    ir_value       *phi_out;
 };
 ast_ternary* ast_ternary_new(lex_ctx ctx, ast_expression *cond, ast_expression *ontrue, ast_expression *onfalse);
 void ast_ternary_delete(ast_ternary*);