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/Constprop.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/Constprop.v') diff --git a/backend/Constprop.v b/backend/Constprop.v index 3a238b95..cd844d30 100644 --- a/backend/Constprop.v +++ b/backend/Constprop.v @@ -113,10 +113,10 @@ Fixpoint builtin_arg_reduction (ae: AE.t) (a: builtin_arg reg) := | FS n => if Compopts.generate_float_constants tt then BA_single n else a | _ => a end - | BA_longofwords hi lo => + | BA_splitlong hi lo => match builtin_arg_reduction ae hi, builtin_arg_reduction ae lo with | BA_int nhi, BA_int nlo => BA_long (Int64.ofwords nhi nlo) - | hi', lo' => BA_longofwords hi' lo' + | hi', lo' => BA_splitlong hi' lo' end | _ => a end. -- cgit