From ab62e1bed37d2efe4d2a9e0139839bae21b1cdd9 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 18 Jan 2021 19:56:44 +0100 Subject: "macosx" is now called "macos" The configure script still accepts "macosx" for backward compatibility, but every other part of CompCert now uses "macos". --- cparser/Machine.ml | 4 ++-- cparser/Machine.mli | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cparser') diff --git a/cparser/Machine.ml b/cparser/Machine.ml index 43b6351b..8de4ed07 100644 --- a/cparser/Machine.ml +++ b/cparser/Machine.ml @@ -178,12 +178,12 @@ let x86_32 = struct_passing_style = SP_split_args; struct_return_style = SR_ref} -let x86_32_macosx = +let x86_32_macos = {x86_32 with struct_passing_style = SP_split_args; struct_return_style = SR_int1248 } let x86_32_bsd = - x86_32_macosx + x86_32_macos let x86_64 = { i32lpll64 with name = "x86_64"; char_signed = true; diff --git a/cparser/Machine.mli b/cparser/Machine.mli index 6d7ffbac..aa99f1aa 100644 --- a/cparser/Machine.mli +++ b/cparser/Machine.mli @@ -71,7 +71,7 @@ val ilp32ll64 : t val i32lpll64 : t val il32pll64 : t val x86_32 : t -val x86_32_macosx : t +val x86_32_macos : t val x86_32_bsd : t val x86_64 : t val win32 : t -- cgit