remove conflicting align directives for MASM

This commit is contained in:
Brent Cook 2023-10-29 11:18:52 -05:00
parent fca20b23d6
commit 01e3b10f50

View File

@ -191,6 +191,7 @@ fixup_masm() {
| sed -e 's/|/OR/g' \ | sed -e 's/|/OR/g' \
| sed -e 's/~/NOT/g' \ | sed -e 's/~/NOT/g' \
| sed -e 's/1 << \([0-9]*\)/1 SHL \1/g' \ | sed -e 's/1 << \([0-9]*\)/1 SHL \1/g' \
| sed -e 's/^ALIGN.*//g' \
> $2 > $2
} }