From c59a26be1b4ae5c0ecf963d0ff2436dc73e72123 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Mon, 14 Oct 2019 10:50:34 +0200 Subject: Explicitly naming SP_split_args for easier grepping --- cparser/StructPassing.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cparser') diff --git a/cparser/StructPassing.ml b/cparser/StructPassing.ml index 5c6454f0..060a4848 100644 --- a/cparser/StructPassing.ml +++ b/cparser/StructPassing.ml @@ -68,7 +68,7 @@ let classify_param env ty = match !struct_passing_style with | SP_ref_callee -> Param_unchanged | SP_ref_caller -> Param_ref_caller - | _ -> + | SP_split_args -> match sizeof env ty, alignof env ty with | Some sz, Some al -> Param_flattened ((sz + 3) / 4, sz, al) -- cgit