aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Rename.ml
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Rename.ml')
-rw-r--r--cparser/Rename.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/cparser/Rename.ml b/cparser/Rename.ml
index d58c8adc..0ce401f1 100644
--- a/cparser/Rename.ml
+++ b/cparser/Rename.ml
@@ -102,6 +102,7 @@ let rec exp env e =
and exp_desc env = function
| EConst cst -> EConst(constant env cst)
| ESizeof ty -> ESizeof(typ env ty)
+ | EAlignof ty -> EAlignof(typ env ty)
| EVar id -> EVar(ident env id)
| EUnop(op, a) -> EUnop(op, exp env a)
| EBinop(op, a, b, ty) -> EBinop(op, exp env a, exp env b, typ env ty)