aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1996-03-14 09:46:53 -0800
committerJim Wilson <wilson@gcc.gnu.org>1996-03-14 09:46:53 -0800
commite0c228daf7a3c8dde2e419c190442b37f552c83f (patch)
treefa49b1c102e71743b192560caca49db69c46bec0 /gcc
parente56bb9ed5131ba747453ff494d236cf97e9d9494 (diff)
downloadgcc-e0c228daf7a3c8dde2e419c190442b37f552c83f.zip
gcc-e0c228daf7a3c8dde2e419c190442b37f552c83f.tar.gz
gcc-e0c228daf7a3c8dde2e419c190442b37f552c83f.tar.bz2
(mips_expand_prologue): Change TYPE_NEEDS_CONSTRUCTING to
TREE_ADDRESSABLE; From-SVN: r11529
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/mips/mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
index b8257f7..043c8d7 100644
--- a/gcc/config/mips/mips.c
+++ b/gcc/config/mips/mips.c
@@ -4936,7 +4936,7 @@ mips_expand_prologue ()
enum machine_mode passed_mode = TYPE_MODE (passed_type);
rtx entry_parm;
- if (TYPE_NEEDS_CONSTRUCTING (passed_type))
+ if (TREE_ADDRESSABLE (passed_type))
{
passed_type = build_pointer_type (passed_type);
passed_mode = Pmode;