summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-09-09 09:37:37 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-09-09 09:37:37 -0700
commitc357381da4b63eb50f5e133066fb72838b4b6ddf (patch)
tree6ba5edf7a5b26b4e3847308878e3dae5ad6dd101
parentfe1e649b7ccb93f30133a151a830749a6aa56726 (diff)
downloadnasm-c357381da4b63eb50f5e133066fb72838b4b6ddf.tar.gz
macros: win32 and win64 are COFF, not Mach-O
Somehow the win32 and win64 aliases got listed on Mach-O, not on COFF. This doesn't have any effect on the current code, but might in the future. Correct. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--output/outcoff.mac2
-rw-r--r--output/outmacho.mac2
2 files changed, 2 insertions, 2 deletions
diff --git a/output/outcoff.mac b/output/outcoff.mac
index c9ecb54c..fffb1051 100644
--- a/output/outcoff.mac
+++ b/output/outcoff.mac
@@ -1,4 +1,4 @@
-OUT: coff
+OUT: coff win32 win64
%define __SECT__ [section .text]
%macro __NASM_CDecl__ 1
%endmacro
diff --git a/output/outmacho.mac b/output/outmacho.mac
index c135bf43..9f58638e 100644
--- a/output/outmacho.mac
+++ b/output/outmacho.mac
@@ -1,4 +1,4 @@
-OUT: macho win32 win64
+OUT: macho
%define __SECT__ [section .text]
%macro __NASM_CDecl__ 1
%endmacro