diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-03-09 21:49:00 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-03-09 21:49:00 +0100 |
commit | db7ec03597533caa93e7eb3688de61c0d6e2bc77 (patch) | |
tree | f2e41a1f3f62ddafe04756aa6068b27b92c97866 /gcc/function.c | |
parent | 0ad313411053e359863e5ec1a5e426254b67de8f (diff) | |
download | gcc-db7ec03597533caa93e7eb3688de61c0d6e2bc77.zip gcc-db7ec03597533caa93e7eb3688de61c0d6e2bc77.tar.gz gcc-db7ec03597533caa93e7eb3688de61c0d6e2bc77.tar.bz2 |
re PR rtl-optimization/47866 (gcc.dg/torture/vector-2.c fails on IA64)
PR rtl-optimization/47866
* expr.c (store_field): If MEM_SCALAR_P (target), don't use
MEM_SET_IN_STRUCT_P (to_rtx, 1), just set MEM_IN_STRUCT_P (to_rtx)
if target wasn't scalar.
* function.c (assign_stack_temp_for_type): Assert that neither
MEM_SCALAR_P nor MEM_IN_STRUCT_P is set previously, set either
MEM_IN_STRUCT_P or MEM_SCALAR_P instead of using MEM_SET_IN_STRUCT_P
macro.
* rtl.h (MEM_SET_IN_STRUCT_P): Removed.
From-SVN: r170834
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c index 19b480d..1f7722c 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -942,8 +942,11 @@ assign_stack_temp_for_type (enum machine_mode mode, HOST_WIDE_INT size, if (type != 0) { MEM_VOLATILE_P (slot) = TYPE_VOLATILE (type); - MEM_SET_IN_STRUCT_P (slot, (AGGREGATE_TYPE_P (type) - || TREE_CODE (type) == COMPLEX_TYPE)); + gcc_checking_assert (!MEM_SCALAR_P (slot) && !MEM_IN_STRUCT_P (slot)); + if (AGGREGATE_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE) + MEM_IN_STRUCT_P (slot) = 1; + else + MEM_SCALAR_P (slot) = 1; } MEM_NOTRAP_P (slot) = 1; |