Fix incorrect padding in arrays of structs (Issue #5484) (#5491)

This commit is contained in:
svenk177
2019-08-23 19:46:47 +02:00
committed by Wouter van Oortmerssen
parent b97b342f59
commit 4525c91be3
16 changed files with 228 additions and 57 deletions

View File

@@ -7,13 +7,17 @@
{
a : [-1,2],
b : A,
c : [C, B]
c : [C, B],
d : [0x1122334455667788, -0x1122334455667788]
},
{
a : [3,-4],
b : B,
c : [B, A]
c : [B, A],
d : [-0x1122334455667788, 0x1122334455667788]
}
]
],
e: 1,
f: [-0x8000000000000000, 0x7FFFFFFFFFFFFFFF]
}
}