From 9a4e45a0ed1473caad64f4b7b8299e011d1458a8 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Thu, 23 Mar 2017 15:46:47 +0000 Subject: [PATCH] [WebAssembly] Fix import type to be signed LEBs This fix is a follow up a previous change with stored value types as signed integers in memory. In future, once the yaml<->wasm binary patche lands we can add test coverage for this kind of thing. Differential Revision: https://reviews.llvm.org/D31227 Patch by Sam Clegg llvm-svn: 298612 --- llvm/lib/MC/WasmObjectWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/MC/WasmObjectWriter.cpp b/llvm/lib/MC/WasmObjectWriter.cpp index 86185b9..0b703f4 100644 --- a/llvm/lib/MC/WasmObjectWriter.cpp +++ b/llvm/lib/MC/WasmObjectWriter.cpp @@ -338,7 +338,7 @@ struct WasmImport { StringRef ModuleName; StringRef FieldName; unsigned Kind; - uint32_t Type; + int32_t Type; }; // A wasm function to be written into the function section. -- 2.7.4