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 /alias.c | |
parent | 835b2b4910c19ee2a9411da55080be6b1e30a722 (diff) | |
download | roux-7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe.tar.gz |
use uint for block ids
Diffstat (limited to 'alias.c')
-rw-r--r-- | alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alias.c b/alias.c index 3d1d00c..56178ca 100644 --- a/alias.c +++ b/alias.c @@ -101,7 +101,7 @@ esc(Ref r, Fn *fn) void fillalias(Fn *fn) { - int n; + uint n; Blk *b; Phi *p; Ins *i; |