]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ir.h
liferange calc now sets the 'locked' flag on values when reaching a CALL
[xonotic/gmqcc.git] / ir.h
diff --git a/ir.h b/ir.h
index a39efca1bcdf973f10c395c6a97471aff93a0027..e85eb45916961440c3015fdb015c018f5d65407f 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -77,6 +77,8 @@ typedef struct ir_value_s {
 
     /* arrays will never overlap with temps */
     bool unique_life;
+    /* temps living during a CALL must be locked */
+    bool      locked;
 
     /* For the temp allocator */
     ir_life_entry_t *life;