diff options
author | Alon Zakai <azakai@google.com> | 2021-03-30 16:50:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 16:50:55 -0700 |
commit | a680b716efe08afd9920269253058a849d6c4286 (patch) | |
tree | 9268b2a903bc60a675c6db537ffa4a3c0cb75df6 /test/passes/set-globals.txt | |
parent | 330f722a4f4ae5288b21954aefa496af5cbc71e7 (diff) | |
download | binaryen-a680b716efe08afd9920269253058a849d6c4286.tar.gz binaryen-a680b716efe08afd9920269253058a849d6c4286.tar.bz2 binaryen-a680b716efe08afd9920269253058a849d6c4286.zip |
SetGlobals pass (#3750)
This allows changing a global's value on the commandline in an easy way.
In some toolchains this is useful as the build can contain a global that
indicates something like a logging level, which this can customize.
Diffstat (limited to 'test/passes/set-globals.txt')
-rw-r--r-- | test/passes/set-globals.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/passes/set-globals.txt b/test/passes/set-globals.txt new file mode 100644 index 000000000..354f133c1 --- /dev/null +++ b/test/passes/set-globals.txt @@ -0,0 +1,4 @@ +(module + (global $foo i32 (i32.const 1337)) + (global $bar i64 (i64.const 42)) +) |