Skip to content

Commit

Permalink
[WebAssembly] Fix test failure after 0a6c4d8
Browse files Browse the repository at this point in the history
Reverting part of https://reviews.llvm.org/D79137 which caused an
failure in an ObjectYAML test.
  • Loading branch information
sbc100 committed Apr 30, 2020
1 parent 19ab53f commit 65e64f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/include/llvm/BinaryFormat/Wasm.h
Expand Up @@ -75,8 +75,8 @@ struct WasmTable {
struct WasmInitExpr {
uint8_t Opcode;
union {
uint32_t Int32;
uint64_t Int64;
int32_t Int32;
int64_t Int64;
uint32_t Float32;
uint64_t Float64;
uint32_t Global;
Expand Down

0 comments on commit 65e64f6

Please sign in to comment.