diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-08 21:15:01 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-08 21:15:01 -0700 |
commit | c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c (patch) | |
tree | 9beb8f096003a278e971dbd834427f6098c9a3dc /Makefile.in | |
parent | 2f0f9ea286e2e37681608e7d4b4ebd4253848478 (diff) | |
download | nasm-c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c.tar.gz nasm-c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c.tar.bz2 nasm-c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c.zip |
Replace the WSAA macros with functions
Change the WSAA macros into functions; reducing the icache footprint.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index c7d380b..6e510a9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -58,7 +58,8 @@ X = @EXEEXT@ .1.man: $(NROFF) -man $< > $@ -NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) insnsb.$(O) \ +NASM = nasm.$(O) nasmlib.$(O) wsaa.$(O) \ + float.$(O) insnsa.$(O) insnsb.$(O) \ assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \ outform.$(O) output/outbin.$(O) \ output/outaout.$(O) output/outcoff.$(O) \ |