Add V128 type

This commit is contained in:
Andrew Brown
2019-08-14 10:12:38 -07:00
committed by Dan Gohman
parent 290b51a5f6
commit 5bd422b429
5 changed files with 31 additions and 3 deletions

View File

@@ -252,8 +252,8 @@ mod test_vmtable_definition {
#[derive(Debug, Copy, Clone)]
#[repr(C, align(8))]
pub struct VMGlobalDefinition {
storage: [u8; 8],
// If more elements are added here, remember to add offset_of tests below!
storage: [u8; 8], // TODO this may need to be 16
// If more elements are added here, remember to add offset_of tests below!
}
#[cfg(test)]