diff options
author | Sam Clegg <sbc@chromium.org> | 2020-11-08 12:24:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 12:24:27 -0800 |
commit | 47607d445b62c98017ce4b9c6cc69b61fae85aa5 (patch) | |
tree | e9c3350b96e21183c95f61cbf4fcfba8cf7257ab /src/asm_v_wasm.h | |
parent | c8249b553f89ede0b4dedd6c00fe7f9f7e745de2 (diff) | |
download | binaryen-47607d445b62c98017ce4b9c6cc69b61fae85aa5.tar.gz binaryen-47607d445b62c98017ce4b9c6cc69b61fae85aa5.tar.bz2 binaryen-47607d445b62c98017ce4b9c6cc69b61fae85aa5.zip |
Remove dead code and unused includes. NFC. (#3328)
Specifically try to cleanup use of asm_v_wasm.h and asmjs constants.
Diffstat (limited to 'src/asm_v_wasm.h')
-rw-r--r-- | src/asm_v_wasm.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/asm_v_wasm.h b/src/asm_v_wasm.h index d7e2e5b24..9b2ee7695 100644 --- a/src/asm_v_wasm.h +++ b/src/asm_v_wasm.h @@ -23,26 +23,12 @@ namespace wasm { -Type asmToWasmType(AsmType asmType); - AsmType wasmToAsmType(Type type); char getSig(Type type); std::string getSig(Function* func); std::string getSig(Type results, Type params); -template<typename T, - typename std::enable_if<std::is_base_of<Expression, T>::value>::type* = - nullptr> -std::string getSig(T* call) { - std::string ret; - ret += getSig(call->type); - for (auto operand : call->operands) { - ret += getSig(operand->type); - } - return ret; -} - template<typename ListType> std::string getSig(Type result, const ListType& operands) { std::string ret; @@ -63,9 +49,6 @@ std::string getSigFromStructs(Type result, const ListType& operands) { return ret; } -// converts an f32 to an f64 if necessary -Expression* ensureDouble(Expression* expr, MixedArena& allocator); - } // namespace wasm #endif // wasm_asm_v_wasm_h |