aboutsummaryrefslogtreecommitdiffstats
path: root/aarch64/Asmexpand.ml
diff options
context:
space:
mode:
authorLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2020-11-25 17:23:12 +0100
committerLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2020-11-25 17:23:12 +0100
commit713d5663a6c7b75eee9a9ae57cfecf8332e72be4 (patch)
treef8edb58f1f9c92482b548dd320fab32324e7563e /aarch64/Asmexpand.ml
parentfbe134640de11d69cef417e2e59e2e2669ccc7ad (diff)
downloadcompcert-kvx-713d5663a6c7b75eee9a9ae57cfecf8332e72be4.tar.gz
compcert-kvx-713d5663a6c7b75eee9a9ae57cfecf8332e72be4.zip
Removing OrigAsmgen by moving the necessary functions in Asmgen.v
Diffstat (limited to 'aarch64/Asmexpand.ml')
-rw-r--r--aarch64/Asmexpand.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/aarch64/Asmexpand.ml b/aarch64/Asmexpand.ml
index 0cee763e..c2519e6a 100644
--- a/aarch64/Asmexpand.ml
+++ b/aarch64/Asmexpand.ml
@@ -34,13 +34,13 @@ let _m1 = Z.of_sint (-1)
(* Emit instruction sequences that set or offset a register by a constant. *)
let expand_loadimm32 (dst: ireg) n =
- List.iter emit (OrigAsmgen.loadimm32 dst n [])
+ List.iter emit (Asmgen.Asmgen_expand.loadimm32 dst n [])
let expand_addimm64 (dst: iregsp) (src: iregsp) n =
- List.iter emit (OrigAsmgen.addimm64 dst src n [])
+ List.iter emit (Asmgen.Asmgen_expand.addimm64 dst src n [])
let expand_storeptr (src: ireg) (base: iregsp) ofs =
- List.iter emit (OrigAsmgen.storeptr src base ofs [])
+ List.iter emit (Asmgen.Asmgen_expand.storeptr src base ofs [])
(* Handling of varargs *)