From 33dfbe7601ad16fcea5377563fa7ceb4053cb85a Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sat, 22 Aug 2015 09:46:37 +0200 Subject: Renaming {BA,BR}_longofwords -> {BA,BR}_splitlong. Use EF_debug instead of EF_annot for line number annotations. Introduce PrintAsmaux.print_debug_info (very incomplete). powerpc/Asmexpand: revise expand_memcpy_small. --- backend/XTL.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/XTL.ml') diff --git a/backend/XTL.ml b/backend/XTL.ml index e05b90d1..dde9bdb0 100644 --- a/backend/XTL.ml +++ b/backend/XTL.ml @@ -127,7 +127,7 @@ let unify_var_type v1 v2 = let rec type_builtin_arg a ty = match a with | BA v -> set_var_type v ty - | BA_longofwords(a1, a2) -> type_builtin_arg a1 Tint; type_builtin_arg a2 Tint + | BA_splitlong(a1, a2) -> type_builtin_arg a1 Tint; type_builtin_arg a2 Tint | _ -> () let rec type_builtin_args al tyl = @@ -139,7 +139,7 @@ let rec type_builtin_args al tyl = let rec type_builtin_res a ty = match a with | BR v -> set_var_type v ty - | BR_longofwords(a1, a2) -> type_builtin_res a1 Tint; type_builtin_res a2 Tint + | BR_splitlong(a1, a2) -> type_builtin_res a1 Tint; type_builtin_res a2 Tint | _ -> () let type_instr = function -- cgit