From 66b0512c64d39f30c103e4a1df470637c6cfd7bd Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Mon, 22 Jun 2015 00:50:02 +0200 Subject: Moved the rest of the ia32 builtins to asmexpand. --- arm/Asmexpand.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'arm/Asmexpand.ml') diff --git a/arm/Asmexpand.ml b/arm/Asmexpand.ml index 36db5f9e..95f35f37 100644 --- a/arm/Asmexpand.ml +++ b/arm/Asmexpand.ml @@ -324,7 +324,9 @@ let expand_instruction instr = | EF_memcpy(sz, al) -> expand_builtin_memcpy (Int32.to_int (camlint_of_coqint sz)) (Int32.to_int (camlint_of_coqint al)) args - | _ -> () + | EF_inline_asm(txt, sg, clob) -> + emit instr + | _ -> assert false end | _ -> emit instr -- cgit