]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ir.h
less verbosity from test suite, just the way blub wants it
[xonotic/gmqcc.git] / ir.h
diff --git a/ir.h b/ir.h
index 00e2ddc0382229d5d60f58a12bbafe6388e81b5d..bb26cff2ae2f8c0ed31ae2bc258dd896532860ce 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -133,6 +133,9 @@ typedef struct ir_instr_s
     /* For the temp-allocation */
     size_t eid;
 
+    /* For IFs */
+    bool   likely;
+
     struct ir_block_s *owner;
 } ir_instr;
 
@@ -240,9 +243,6 @@ typedef struct ir_function_s
     /* locally defined variables */
     ir_value **locals;
 
-    /* how many of the locals are parameters */
-    size_t max_parameters;
-
     size_t allocated_locals;
 
     ir_block*     first;