mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
avoid warnings. This is primarily useful in bin object format output. db label ; if label is >255, warns. db label & 0xff ; okay, no warning. Masks other than full-sized 1s are still not supported: db label & 0x7f ; too complex error svn path=/trunk/yasm/; revision=2034
1 line
48 B
Text
1 line
48 B
Text
-:1: warning: value does not fit in 8 bit field
|