aboutsummaryrefslogtreecommitdiffstats
path: root/arm/Asmexpand.ml
diff options
context:
space:
mode:
authorMichael Schmidt <github@mschmidt.me>2016-06-07 15:28:35 +0200
committerMichael Schmidt <github@mschmidt.me>2016-06-07 15:28:35 +0200
commit3c4f1377395494e8f706b829d0b69e9c33b6a5b8 (patch)
tree21aa0ada3d340a868a20388a6d7863464145fbd0 /arm/Asmexpand.ml
parent35041fb0949304dcdb6d82687adbaa71bf8224ab (diff)
downloadcompcert-kvx-3c4f1377395494e8f706b829d0b69e9c33b6a5b8.tar.gz
compcert-kvx-3c4f1377395494e8f706b829d0b69e9c33b6a5b8.zip
fix '__builtin_annot_val' to '__builtin_annot_intval', such that CompCert can parse its own .compcert.c output, bug 18060
Diffstat (limited to 'arm/Asmexpand.ml')
-rw-r--r--arm/Asmexpand.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm/Asmexpand.ml b/arm/Asmexpand.ml
index 79f06991..8aef64e4 100644
--- a/arm/Asmexpand.ml
+++ b/arm/Asmexpand.ml
@@ -82,7 +82,7 @@ let expand_annot_val txt targ args res =
| [BA(FR src)], BR(FR dst) ->
if dst <> src then emit (Pfcpyd (dst,src))
| _, _ ->
- raise (Error "ill-formed __builtin_annot_val")
+ raise (Error "ill-formed __builtin_annot_intval")
(* Handling of memcpy *)