diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-07-20 09:40:14 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-07-20 09:40:14 -0700 |
commit | 0303f3b6f76428fa31881d528cd3d783db8a8b03 (patch) | |
tree | acf645f4b848b637d37f62d3d11d82188d63f1b4 /standard.mac | |
parent | aad26229b7dc9d2bcc4d8de9975724edd61eac43 (diff) | |
download | nasm-0303f3b6f76428fa31881d528cd3d783db8a8b03.tar.gz nasm-0303f3b6f76428fa31881d528cd3d783db8a8b03.tar.bz2 nasm-0303f3b6f76428fa31881d528cd3d783db8a8b03.zip |
Err, "alignr" was really the same as the previous "alignb"
Replace "alignb" with the (slightly more optimized) "alignr" macro,
but keep the name "alignb".
Diffstat (limited to 'standard.mac')
-rw-r--r-- | standard.mac | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/standard.mac b/standard.mac index 890c2b3..4e356d9 100644 --- a/standard.mac +++ b/standard.mac @@ -68,10 +68,7 @@ __SECT__ %imacro align 1-2+.nolist nop times ($$-$) % (%1) %2 %endmacro -%imacro alignb 1-2+.nolist resb 1 - times ($$-$) % (%1) %2 -%endmacro -%imacro alignr 1-2+.nolist +%imacro alignb 1-2+.nolist %ifempty %2 resb ($$-$) % (%1) %else |