aboutsummaryrefslogtreecommitdiffstats
path: root/cfrontend/C2C.ml
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-02-24 09:01:28 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-02-24 09:01:28 +0000
commit202bc495442a1a8fa184b73ac0063bdbbbcdf846 (patch)
tree46c6920201b823bf47252bc52864b0bf60f3233e /cfrontend/C2C.ml
parentf774d5f2d604f747e72e2d3bb56cc3f90090e2dd (diff)
downloadcompcert-202bc495442a1a8fa184b73ac0063bdbbbcdf846.tar.gz
compcert-202bc495442a1a8fa184b73ac0063bdbbbcdf846.zip
Constant propagation within __builtin_annot.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2126 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cfrontend/C2C.ml')
-rw-r--r--cfrontend/C2C.ml6
1 files changed, 4 insertions, 2 deletions
diff --git a/cfrontend/C2C.ml b/cfrontend/C2C.ml
index 4233af99..f34c396f 100644
--- a/cfrontend/C2C.ml
+++ b/cfrontend/C2C.ml
@@ -511,8 +511,10 @@ let rec convertExpr env e =
begin match args with
| {edesc = C.EConst(CStr txt)} :: args1 ->
let targs1 = convertTypList env (List.map (fun e -> e.etyp) args1) in
- Ebuiltin(EF_annot(intern_string txt, typlist_of_typelist targs1),
- targs1, convertExprList env args1, ty)
+ Ebuiltin(
+ EF_annot(intern_string txt,
+ List.map (fun t -> AA_arg t) (typlist_of_typelist targs1)),
+ targs1, convertExprList env args1, ty)
| _ ->
error "ill-formed __builtin_annot (first argument must be string literal)";
ezero