The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: Apl_and_Asm on May 15, 2011, 09:46:30 PM

Title: Could someone post this bug report on JWASM forum (my account is not activated)
Post by: Apl_and_Asm on May 15, 2011, 09:46:30 PM

Assembling with JWASM print the SIZEOFs of following structures.
You will get 16,8,8,16,8, respectively (instead of 16 each time, of course).
Check with MASM if you want.


union_0 UNION

_qword     QWORD ?

_xmm_word  BYTE 16 DUP(?)

union_0 ENDS


union_1 UNION

_qword     QWORD 0

_xmm_word  BYTE 16 DUP(0)

union_1 ENDS


union_2 UNION

_xmm_word  BYTE 16 DUP(0)

_qword     QWORD 0

union_2 ENDS


union_3 UNION

_xmm_word  BYTE 16 DUP(?)

_qword     QWORD 0

union_3 ENDS


union_4 UNION

_xmm_word  BYTE 16 DUP(0)

_qword     QWORD ?

union_4 ENDS
Title: Re: Could someone post this bug report on JWASM forum (my account is not activated)
Post by: qWord on May 15, 2011, 10:04:59 PM
posting errors on SF bug trackers doesn't requires an account.
Title: Re: Could someone post this bug report on JWASM forum (my account is not activated)
Post by: Apl_and_Asm on May 15, 2011, 10:17:59 PM
Thanks for this information.