diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-02-06 14:36:27 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-02-06 14:36:27 -0500 |
commit | 7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe (patch) | |
tree | 1956b81f5c2a9eea51d6bbc9a4071d83874dd492 /ssa.c | |
parent | 835b2b4910c19ee2a9411da55080be6b1e30a722 (diff) | |
download | roux-7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe.tar.gz |
use uint for block ids
Diffstat (limited to 'ssa.c')
-rw-r--r-- | ssa.c | 3 |
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); |