From 3c4f1377395494e8f706b829d0b69e9c33b6a5b8 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Tue, 7 Jun 2016 15:28:35 +0200 Subject: fix '__builtin_annot_val' to '__builtin_annot_intval', such that CompCert can parse its own .compcert.c output, bug 18060 --- ia32/Asmexpand.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ia32') diff --git a/ia32/Asmexpand.ml b/ia32/Asmexpand.ml index 5e5bbb3e..6a64221e 100644 --- a/ia32/Asmexpand.ml +++ b/ia32/Asmexpand.ml @@ -67,7 +67,7 @@ let expand_annot_val txt targ args res = | [BA(FR src)], BR(FR dst) -> if dst <> src then emit (Pmovsd_ff (dst,src)) | _, _ -> - raise (Error "ill-formed __builtin_annot_val") + raise (Error "ill-formed __builtin_annot_intval") (* Translate a builtin argument into an addressing mode *) -- cgit