aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimplify.c
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2015-04-17 09:27:08 +0000
committerTom de Vries <vries@gcc.gnu.org>2015-04-17 09:27:08 +0000
commitd67cb100c6b0597e0377481ecd0f76e8e555770f (patch)
treeda8ccc329015608df03029dffb874f96544fad71 /gcc/gimplify.c
parentf8e89441bc5518f450b6511c59c17c837859d109 (diff)
downloadgcc-d67cb100c6b0597e0377481ecd0f76e8e555770f.zip
gcc-d67cb100c6b0597e0377481ecd0f76e8e555770f.tar.gz
gcc-d67cb100c6b0597e0377481ecd0f76e8e555770f.tar.bz2
Set PROP_gimple_lva for functions without IFN_VA_ARG
2015-04-17 Tom de Vries <tom@codesourcery.com> * gimplify.c (gimplify_function_tree): Tentatively set PROP_gimple_lva in cfun->curr_properties. (gimplify_va_arg_expr): Clear PROP_gimple_lva in cfun->curr_properties if we generate an IFN_VA_ARG. * tree-inline.c (expand_call_inline): Reset PROP_gimple_lva in dest function if PROP_gimple_lva is not set in src function. From-SVN: r222174
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r--gcc/gimplify.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c
index e1ea204..0394543 100644
--- a/gcc/gimplify.c
+++ b/gcc/gimplify.c
@@ -9201,6 +9201,10 @@ gimplify_function_tree (tree fndecl)
else
push_struct_function (fndecl);
+ /* Tentatively set PROP_gimple_lva here, and reset it in gimplify_va_arg_expr
+ if necessary. */
+ cfun->curr_properties |= PROP_gimple_lva;
+
for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
{
/* Preliminarily mark non-addressed complex variables as eligible
@@ -9295,7 +9299,7 @@ gimplify_function_tree (tree fndecl)
}
DECL_SAVED_TREE (fndecl) = NULL_TREE;
- cfun->curr_properties = PROP_gimple_any;
+ cfun->curr_properties |= PROP_gimple_any;
pop_cfun ();
}
@@ -9414,6 +9418,10 @@ gimplify_va_arg_expr (tree *expr_p, gimple_seq *pre_p,
tag = build_int_cst (build_pointer_type (type), 0);
*expr_p = build_call_expr_internal_loc (loc, IFN_VA_ARG, type, 2, ap, tag);
+ /* Clear the tentatively set PROP_gimple_lva, to indicate that IFN_VA_ARG
+ needs to be expanded. */
+ cfun->curr_properties &= ~PROP_gimple_lva;
+
return GS_OK;
}