aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Configuration.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2018-02-16 13:45:53 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2018-02-16 16:29:38 +0100
commit8cd40f0bd7571ba4adf8b35234df88a0522d403d (patch)
treed7ce96f7390e05314f8894a5f22362b1eee05103 /driver/Configuration.ml
parent1099583341e3a218accf80391202a7e5390f54cc (diff)
downloadcompcert-kvx-8cd40f0bd7571ba4adf8b35234df88a0522d403d.tar.gz
compcert-kvx-8cd40f0bd7571ba4adf8b35234df88a0522d403d.zip
Removed struct passing/return from Configurations
Diffstat (limited to 'driver/Configuration.ml')
-rw-r--r--driver/Configuration.ml28
1 files changed, 0 insertions, 28 deletions
diff --git a/driver/Configuration.ml b/driver/Configuration.ml
index 48f8abde..972fd295 100644
--- a/driver/Configuration.ml
+++ b/driver/Configuration.ml
@@ -143,34 +143,6 @@ let stdlib_path =
""
let asm_supports_cfi = get_bool_config "asm_supports_cfi"
-
-type struct_passing_style =
- | SP_ref_callee (* by reference, callee takes copy *)
- | SP_ref_caller (* by reference, caller takes copy *)
- | SP_split_args (* by value, as a sequence of ints *)
-
-type struct_return_style =
- | SR_int1248 (* return by content if size is 1, 2, 4 or 8 bytes *)
- | SR_int1to4 (* return by content if size is <= 4 *)
- | SR_int1to8 (* return by content if size is <= 8 *)
- | SR_ref (* always return by assignment to a reference
- given as extra argument *)
-
-let struct_passing_style =
- match get_config_string "struct_passing_style" with
- | "ref-callee" -> SP_ref_callee
- | "ref-caller" -> SP_ref_caller
- | "ints" -> SP_split_args
- | v -> bad_config "struct_passing_style" [v]
-
-let struct_return_style =
- match get_config_string "struct_return_style" with
- | "int1248" -> SR_int1248
- | "int1-4" -> SR_int1to4
- | "int1-8" -> SR_int1to8
- | "ref" -> SR_ref
- | v -> bad_config "struct_return_style" [v]
-
type response_file_style =
| Gnu (* responsefiles in gnu compatible syntax *)
| Diab (* responsefiles in diab compatible syntax *)