diff options
author | Daniel Wirtz <dcode@dcode.io> | 2018-07-18 19:16:29 +0200 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2018-07-18 10:16:29 -0700 |
commit | 25890f53cba4b9b05341ac146dde755a7fa4fddd (patch) | |
tree | 6fe6ca4b9401dc59df1d9b9d2aded6d70005b4df /src/tools/wasm-opt.cpp | |
parent | e601522b1e15e5a2a96578244faca1648021fb2d (diff) | |
download | binaryen-25890f53cba4b9b05341ac146dde755a7fa4fddd.tar.gz binaryen-25890f53cba4b9b05341ac146dde755a7fa4fddd.tar.bz2 binaryen-25890f53cba4b9b05341ac146dde755a7fa4fddd.zip |
Support constant globals in precompute pass (#1622)
This PR includes non-mutable globals in precompute, which will allow me to continue removing manual inlining of constants in AssemblyScript without breaking something. Related: #1621, i.e.
enum Animal {
CAT = 0,
DOG = CAT + 1 // requires that `Animal.CAT` is evaluated to
// precompute the constant value for `Animal.DOG`
}
Diffstat (limited to 'src/tools/wasm-opt.cpp')
-rw-r--r-- | src/tools/wasm-opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/wasm-opt.cpp b/src/tools/wasm-opt.cpp index f78278bcf..278a9879d 100644 --- a/src/tools/wasm-opt.cpp +++ b/src/tools/wasm-opt.cpp @@ -149,7 +149,7 @@ int main(int argc, const char* argv[]) { p.dump(std::cerr); std::cerr << '\n'; Fatal() << "error in parsing wasm source map"; - } catch (std::bad_alloc& b) { + } catch (std::bad_alloc&) { Fatal() << "error in building module, std::bad_alloc (possibly invalid request for silly amounts of memory)"; } |