From a4dee8a5d160cdc7cb4bb816754ad665736304ee Mon Sep 17 00:00:00 2001 From: Gavin Koch Date: Mon, 16 Feb 1998 06:26:59 +0000 Subject: [PATCH] mips.c (mips_expand_epilogue): Update tsize_rtx if tsize changes to something other than zero. * mips/mips.c (mips_expand_epilogue): Update tsize_rtx if tsize changes to something other than zero. From-SVN: r18026 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6e443da238e..89c544c9674 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Feb 16 09:24:32 1998 Gavin Koch + + * mips/mips.c (mips_expand_epilogue): Update tsize_rtx if + tsize changes to something other than zero. + Mon Feb 16 09:11:48 1998 Gavin Koch * ginclude/va-mips.h: Replace casts of pointers to int with diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index b7774b3f9c5..4204378edfc 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -6775,6 +6775,9 @@ mips_expand_epilogue () g6_rtx)); tsize = 0; } + + if (tsize && tsize != orig_tsize) + tsize_rtx = GEN_INT (tsize); } if (TARGET_LONG64) -- 2.30.2