Skip to content
Snippets Groups Projects
Memdataaux.ml 947 B
Newer Older
(* *********************************************************************)
(*                                                                     *)
(*              The Compcert verified compiler                         *)
(*                                                                     *)
(*          Xavier Leroy, INRIA Paris-Rocquencourt                     *)
(*                                                                     *)
(*  Copyright Institut National de Recherche en Informatique et en     *)
(*  Automatique.  All rights reserved.  This file is distributed       *)
(*  under the terms of the INRIA Non-Commercial License Agreement.     *)
(*                                                                     *)
(* *********************************************************************)

let big_endian =
  match Configuration.arch with
  | "powerpc" -> true
  | "arm" -> false
xleroy's avatar
xleroy committed
  | "ia32" -> false
  | _ -> assert false