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/RTLtyping.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/RTLtyping.v') diff --git a/backend/RTLtyping.v b/backend/RTLtyping.v index 8635ed53..8b30b44f 100644 --- a/backend/RTLtyping.v +++ b/backend/RTLtyping.v @@ -76,7 +76,7 @@ Definition type_of_builtin_arg (a: builtin_arg reg) : typ := | BA_addrstack ofs => Tint | BA_loadglobal chunk id ofs => type_of_chunk chunk | BA_addrglobal id ofs => Tint - | BA_longofwords hi lo => Tlong + | BA_splitlong hi lo => Tlong end. Definition type_of_builtin_res (r: builtin_res reg) : typ := @@ -245,7 +245,7 @@ Definition type_builtin_arg (e: S.typenv) (a: builtin_arg reg) (ty: typ) : res S | BA_addrstack ofs => type_expect e ty Tint | BA_loadglobal chunk id ofs => type_expect e ty (type_of_chunk chunk) | BA_addrglobal id ofs => type_expect e ty Tint - | BA_longofwords hi lo => type_expect e ty Tlong + | BA_splitlong hi lo => type_expect e ty Tlong end. Fixpoint type_builtin_args (e: S.typenv) (al: list (builtin_arg reg)) (tyl: list typ) : res S.typenv := -- cgit