diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-11-09 21:34:59 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-11-09 21:34:59 -0500 |
commit | 8ed8f1cd4c8251c6aba3f694b711179a44c91397 (patch) | |
tree | 390b006f92f4efae3504e9796fa996241049cdf7 /lisc/ssa.c | |
parent | b5330f2a44466c5ceeed4b2e35dca6b37ca659a5 (diff) | |
download | roux-8ed8f1cd4c8251c6aba3f694b711179a44c91397.tar.gz |
provide BZERO macro for bitsets
Diffstat (limited to 'lisc/ssa.c')
-rw-r--r-- | lisc/ssa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/ssa.c b/lisc/ssa.c index 4b3ff68..d31cfad 100644 --- a/lisc/ssa.c +++ b/lisc/ssa.c @@ -207,7 +207,7 @@ phiins(Fn *fn) for (t=Tmp0; t<nt; t++) { if (fn->tmp[t].phi != 0) continue; - u = (Bits){{0}}; + BZERO(u); w = -1; bp = be; for (b=fn->start; b; b=b->link) { |