diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-01 10:50:43 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-01 10:50:43 -0700 |
commit | 7359e3ff751c241d19f638c59f127ab73c2c7e07 (patch) | |
tree | c01238e51e7b76a8b6af386305f352e5242451d9 /src/runtime.js | |
parent | fcc9d08d9e4a7513f021952263d05f97ef997f2f (diff) |
fix bugs with parsing anonymous structure types
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.js b/src/runtime.js index abeb0d2a..7e3c7b84 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -130,7 +130,7 @@ Runtime = { size = Types.types[field].flatSize; alignSize = Types.types[field].alignSize; } else { - dprint('Unclear type in struct: ' + field + ', in ' + type.name_); + dprint('Unclear type in struct: ' + field + ', in ' + type.name_ + ' :: ' + dump(Types.types[type.name_])); assert(0); } alignSize = type.packed ? 1 : Math.min(alignSize, QUANTUM_SIZE); |