https://d.puremagic.com/issues/show_bug.cgi?id=11406
--- Comment #4 from Martin Nowak <[email protected]> 2013-11-14 09:30:49 PST --- cat > bug.d << CODE enum Op { a, b, c, d, } void bug(Op op) { final switch (op) { case Op.a: case Op.b: case Op.c: case Op.d: } } void main() { bug(Op.a); } CODE There are an extra 8-bytes at the start of the switch table. Maybe an alignment issue? -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
