diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-03 10:17:12 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:29 -0400 |
commit | 033dce6e17ea10997498e8fa189f6d079a6105b9 (patch) | |
tree | 6e2ba604da0f3cc6adc7b46777db5e194ffcafd6 | |
parent | 53e6393295871b4682bf54374bc76cb0c35c42a6 (diff) | |
download | roux-033dce6e17ea10997498e8fa189f6d079a6105b9.tar.gz |
silence clang warning
-rw-r--r-- | lisc/live.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisc/live.c b/lisc/live.c index 7449d84..d1c31a2 100644 --- a/lisc/live.c +++ b/lisc/live.c @@ -15,6 +15,7 @@ bset(Ref r, Blk *b, Bits *rb, int *nlv) break; default: diag("live: unhandled reference"); + return; } if (!BGET(*bs, r.val)) { ++*nlv; |