Bump size of global up to 128 bits.

Fixes last spec test failure from the WAVM SIMD spec test.
This commit is contained in:
Nick Lewycky
2019-07-18 13:39:41 -07:00
parent 3be6a024aa
commit ea93b68165
5 changed files with 54 additions and 41 deletions

View File

@ -535,7 +535,7 @@ impl LocalMemory {
#[derive(Debug, Clone, Copy)]
#[repr(C)]
pub struct LocalGlobal {
pub data: u64,
pub data: u128,
}
impl LocalGlobal {