------- Additional Comments From jbeulich at novell dot com  2010-06-21 15:32 
-------
(In reply to comment #5)
> When does MASM treat BYTE, WORD, DWORD, ... as numbers?
As operands to most operators (or as an expression on their own), but apparently
not (generally) to []. Beyond that, as with other things 32- and 64-bit MASM
aren't consistent (64-bit e.g. doesn't accept

        mov     eax, [byte]

but does accept

        mov     eax, [word+byte]

whereas 32-bit accepts both).

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=11731

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to