summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
Diffstat (limited to 'all.h')
-rw-r--r--all.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/all.h b/all.h
index ae39145..fc26a61 100644
--- a/all.h
+++ b/all.h
@@ -248,7 +248,7 @@ struct Use {
 		UIns,
 		UJmp,
 	} type;
-	int bid;
+	uint bid;
 	union {
 		Ins *ins;
 		Phi *phi;
@@ -279,6 +279,7 @@ struct Alias {
 
 struct Tmp {
 	char name[NString];
+	uint bid; /* id of a defining block */
 	Use *use;
 	uint ndef, nuse;
 	uint cost;