aboutsummaryrefslogtreecommitdiff
path: root/ssa.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <[email protected]>2017-02-06 14:36:27 -0500
committerQuentin Carbonneaux <[email protected]>2017-02-06 14:36:27 -0500
commit7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe (patch)
tree1956b81f5c2a9eea51d6bbc9a4071d83874dd492 /ssa.c
parent835b2b4910c19ee2a9411da55080be6b1e30a722 (diff)
use uint for block ids
Diffstat (limited to 'ssa.c')
-rw-r--r--ssa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssa.c b/ssa.c
index c0c340c..8a28eeb 100644
--- a/ssa.c
+++ b/ssa.c
@@ -101,7 +101,8 @@ phiins(Fn *fn)
Ins *i;
Phi *p;
Ref r;
- int t, n, nt;
+ int t, nt;
+ uint n;
short k;
bsinit(u, fn->nblk);