summaryrefslogtreecommitdiff
path: root/output/outmacho.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2019-08-10 02:28:17 -0700
committerH. Peter Anvin <hpa@zytor.com>2019-08-10 02:28:17 -0700
commit9084beb1bb7e985e3d954081e15b4d469047f1b0 (patch)
treed96adee24ac6532ad35adf1fd0914a7bec4ea013 /output/outmacho.c
parent355bfb879de7e42215dd3f3a3631301705420715 (diff)
downloadnasm-9084beb1bb7e985e3d954081e15b4d469047f1b0.tar.gz
Clean up backend format names
The backend format names were rather redundant and not always helpful. Do some cleanup. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'output/outmacho.c')
-rw-r--r--output/outmacho.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/output/outmacho.c b/output/outmacho.c
index 6d9059be..5ad6601d 100644
--- a/output/outmacho.c
+++ b/output/outmacho.c
@@ -2284,7 +2284,7 @@ static void macho32_init(void)
}
static const struct dfmt macho32_df_dwarf = {
- "MachO32 (i386) dwarf debug format for Darwin/MacOS",
+ "Mach-O i386 dwarf for Darwin/MacOS",
"dwarf",
macho_dbg_init,
macho_dbg_linenum,
@@ -2300,7 +2300,7 @@ static const struct dfmt * const macho32_df_arr[2] =
{ &macho32_df_dwarf, NULL };
const struct ofmt of_macho32 = {
- "NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X (i386) object files",
+ "Mach-O i386 (Mach, including MacOS X and variants)",
"macho32",
".o",
0,
@@ -2351,7 +2351,7 @@ static void macho64_init(void)
}
static const struct dfmt macho64_df_dwarf = {
- "MachO64 (x86-64) dwarf debug format for Darwin/MacOS",
+ "Mach-O x86-64 dwarf for Darwin/MacOS",
"dwarf",
macho_dbg_init,
macho_dbg_linenum,
@@ -2367,7 +2367,7 @@ static const struct dfmt * const macho64_df_arr[2] =
{ &macho64_df_dwarf, NULL };
const struct ofmt of_macho64 = {
- "NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X (x86_64) object files",
+ "Mach-O x86-64 (Mach, including MacOS X and variants)",
"macho64",
".o",
0,