From b657f957dadffd2e55c895957d506146997fade6 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Thu, 3 Nov 2016 14:12:00 +0100 Subject: remove unused file, update tests for arch-field of configuration files --- exportclight/Clightgen.ml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'exportclight') diff --git a/exportclight/Clightgen.ml b/exportclight/Clightgen.ml index f272c3ed..eddb36e2 100644 --- a/exportclight/Clightgen.ml +++ b/exportclight/Clightgen.ml @@ -168,7 +168,12 @@ let _ = | "arm" -> if Configuration.is_big_endian then Machine.arm_bigendian else Machine.arm_littleendian - | "ia32" -> Machine.x86_32 + | "x86" -> if Configuration.model = "64" then + Machine.x86_64 + else + if Configuration.abi = "macosx" + then Machine.x86_32_macosx + else Machine.x86_32 | _ -> assert false end; Builtins.set C2C.builtins; -- cgit