diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-04-30 09:48:57 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-04-30 09:48:57 -0700 |
commit | d36ae5651435a477e34d9e1338ee3ca79d949b1c (patch) | |
tree | 40123d990691216ed4ea8cc86eefcc99637ebb5b | |
parent | 80ca5945f89d5a8f1932a006b2565d11adad4446 (diff) | |
download | mu-d36ae5651435a477e34d9e1338ee3ca79d949b1c.tar.gz |
2887
-rw-r--r-- | 030container.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/030container.cc b/030container.cc index 38682e96..35b2d89b 100644 --- a/030container.cc +++ b/030container.cc @@ -93,10 +93,7 @@ def main [ +mem: storing 0 in location 7 :(before "End size_of(type) Cases") -if (type->value == -1) { - // error value, but we'll raise it elsewhere - return 1; -} +if (type->value == -1) return 1; // error value, but we'll raise it elsewhere if (type->value == 0) { assert(!type->left && !type->right); return 1; |