aboutsummaryrefslogtreecommitdiffstats
path: root/cfrontend/SimplExpr.v
diff options
context:
space:
mode:
Diffstat (limited to 'cfrontend/SimplExpr.v')
-rw-r--r--cfrontend/SimplExpr.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/cfrontend/SimplExpr.v b/cfrontend/SimplExpr.v
index 7b37692a..3144b65e 100644
--- a/cfrontend/SimplExpr.v
+++ b/cfrontend/SimplExpr.v
@@ -214,6 +214,8 @@ Fixpoint transl_expr (dst: destination) (a: C.expr) : mon (list statement * expr
error (msg "SimplExpr.transl_expr: val")
| C.Esizeof ty' ty =>
ret (finish dst nil (Esizeof ty' ty))
+ | C.Ealignof ty' ty =>
+ ret (finish dst nil (Ealignof ty' ty))
| C.Evalof l ty =>
do (sl1, a1) <- transl_expr For_val l;
do (sl2, a2) <- transl_valof (C.typeof l) a1;