diff options
author | Derek Schuff <dschuff@chromium.org> | 2016-04-21 13:52:18 -0700 |
---|---|---|
committer | Derek Schuff <dschuff@chromium.org> | 2016-04-21 13:52:18 -0700 |
commit | 7b180b286a3df1a231454399869516ae8571d9bb (patch) | |
tree | 48a4e3baaa5f7cb9a1c2065b1eeb96f546214f58 /src/support | |
parent | a4aba7acd77a2e86ae23f243962be78e889c35d3 (diff) | |
download | binaryen-7b180b286a3df1a231454399869516ae8571d9bb.tar.gz binaryen-7b180b286a3df1a231454399869516ae8571d9bb.tar.bz2 binaryen-7b180b286a3df1a231454399869516ae8571d9bb.zip |
Move wasm-linker into its own cpp file (#375)
Still making things nicer for #370
Pulling wasm-linker into its own file also necessitated pulling asm_v_wasm.h into a cpp file. It goes into a new lib directory, src/asmjs.
No actual code changes in this PR.
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/utilities.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/support/utilities.h b/src/support/utilities.h index 3ff1f9c5e..92e7c226f 100644 --- a/src/support/utilities.h +++ b/src/support/utilities.h @@ -17,7 +17,11 @@ #ifndef wasm_support_utilities_h #define wasm_support_utilities_h +#include <cassert> +#include <cstdint> #include <cstring> +#include <memory> +#include <iostream> #include <type_traits> namespace wasm { |