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 /Mkfiles | |
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 'Mkfiles')
-rw-r--r-- | Mkfiles/msvc.mak | 3 | ||||
-rw-r--r-- | Mkfiles/netware.mak | 3 | ||||
-rw-r--r-- | Mkfiles/openwcom.mak | 3 | ||||
-rw-r--r-- | Mkfiles/owlinux.mak | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/Mkfiles/msvc.mak b/Mkfiles/msvc.mak index 6707f54..beb15cc 100644 --- a/Mkfiles/msvc.mak +++ b/Mkfiles/msvc.mak @@ -32,7 +32,8 @@ X = .exe .c.obj: $(CC) /c $(ALL_CFLAGS) /Fo$@ $< -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) \ diff --git a/Mkfiles/netware.mak b/Mkfiles/netware.mak index 8b786a7..6de408b 100644 --- a/Mkfiles/netware.mak +++ b/Mkfiles/netware.mak @@ -28,7 +28,8 @@ LDFLAGS+=-s O = o -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) \ diff --git a/Mkfiles/openwcom.mak b/Mkfiles/openwcom.mak index eb9183c..bf51808 100644 --- a/Mkfiles/openwcom.mak +++ b/Mkfiles/openwcom.mak @@ -44,7 +44,8 @@ X = .exe $(CC) -c $(ALL_CFLAGS) -fo=$^@ $[@ # Note: wcl386 is broken if forward slashes are used as path separators. -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) & diff --git a/Mkfiles/owlinux.mak b/Mkfiles/owlinux.mak index ab44fbb..f1d6f3f 100644 --- a/Mkfiles/owlinux.mak +++ b/Mkfiles/owlinux.mak @@ -55,7 +55,8 @@ X = .exe .c.$(O): $(CC) -c $(ALL_CFLAGS) -fo=$@ $< -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) \ |