diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -5671,10 +5671,8 @@ needs_to_live_in_memory (tree t) return (DECL_NEEDS_TO_LIVE_IN_MEMORY_INTERNAL (t) || TREE_STATIC (t) || DECL_EXTERNAL (t) - || DECL_NONLOCAL (t) || (TREE_CODE (t) == RESULT_DECL - && aggregate_value_p (t, current_function_decl)) - || decl_function_context (t) != current_function_decl); + && aggregate_value_p (t, current_function_decl))); } /* There are situations in which a language considers record types |