diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2004-01-01 17:17:00 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2004-01-01 17:17:00 +0000 |
commit | ac3f5df7092b9b99f6eb4a403b206ef0b47d4af1 (patch) | |
tree | 5ad9cad28cff1f48e3790a763b71d7da1961d00a /gcc/builtins.c | |
parent | 997404de62431a850da6b05e228614a004549705 (diff) | |
download | gcc-ac3f5df7092b9b99f6eb4a403b206ef0b47d4af1.zip gcc-ac3f5df7092b9b99f6eb4a403b206ef0b47d4af1.tar.gz gcc-ac3f5df7092b9b99f6eb4a403b206ef0b47d4af1.tar.bz2 |
builtins.c (expand_builtin_apply_args_1): Call force_operand on plus_constant result.
* builtins.c (expand_builtin_apply_args_1) [STACK_GROWS_DOWNWARD]:
Call force_operand on plus_constant result.
From-SVN: r75306
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index c5af18d..df93f48 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -1128,8 +1128,11 @@ expand_builtin_apply_args_1 (void) tem = copy_to_reg (virtual_incoming_args_rtx); #ifdef STACK_GROWS_DOWNWARD /* We need the pointer as the caller actually passed them to us, not - as we might have pretended they were passed. */ - tem = plus_constant (tem, current_function_pretend_args_size); + as we might have pretended they were passed. Make sure it's a valid + operand, as emit_move_insn isn't expected to handle a PLUS. */ + tem + = force_operand (plus_constant (tem, current_function_pretend_args_size), + NULL_RTX); #endif emit_move_insn (adjust_address (registers, Pmode, 0), tem); |