diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index 5af0a901cde..11edd8b9b27 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3241,9 +3241,9 @@ purge_addressof_1 (rtx *loc, rtx insn, int force, int store, int may_postpone, return true; } purge_addressof_replacements - = gen_rtx (EXPR_LIST, VOIDmode, XEXP (x, 0), - gen_rtx_EXPR_LIST (VOIDmode, sub, - purge_addressof_replacements)); + = gen_rtx_EXPR_LIST (VOIDmode, XEXP (x, 0), + gen_rtx_EXPR_LIST (VOIDmode, sub, + purge_addressof_replacements)); return true; } goto restart; |