diff options
Diffstat (limited to 'contrib/gcc/gimplify.c')
-rw-r--r-- | contrib/gcc/gimplify.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/gcc/gimplify.c b/contrib/gcc/gimplify.c index be45f47..b0270a9 100644 --- a/contrib/gcc/gimplify.c +++ b/contrib/gcc/gimplify.c @@ -5748,6 +5748,11 @@ gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p, ret = GS_ALL_DONE; break; + case CHANGE_DYNAMIC_TYPE_EXPR: + ret = gimplify_expr (&CHANGE_DYNAMIC_TYPE_LOCATION (*expr_p), + pre_p, post_p, is_gimple_reg, fb_lvalue); + break; + case OBJ_TYPE_REF: { enum gimplify_status r0, r1; |