aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2015-07-16 13:00:55 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2015-07-16 13:00:55 +0000
commitce967e936bd0e47a1941a52f1adf98bd76700070 (patch)
tree3664b299f2c112bc470903237efd2406c6b55859 /gcc/config
parent7781d2626e5deb6cd1c683498cc19f4f7daa04e8 (diff)
downloadgcc-ce967e936bd0e47a1941a52f1adf98bd76700070.zip
gcc-ce967e936bd0e47a1941a52f1adf98bd76700070.tar.gz
gcc-ce967e936bd0e47a1941a52f1adf98bd76700070.tar.bz2
sparc.md (save_stack_nonlocal): Use adjust_address instead of adjust_address_nv.
* config/sparc/sparc.md (save_stack_nonlocal): Use adjust_address instead of adjust_address_nv. (restore_stack_nonlocal): Likewise. (nonlocal_goto): Likewise. From-SVN: r225874
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/sparc/sparc.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md
index a561877..9665ee6 100644
--- a/gcc/config/sparc/sparc.md
+++ b/gcc/config/sparc/sparc.md
@@ -6704,8 +6704,8 @@
(set (match_dup 2) (match_dup 3))]
""
{
- operands[0] = adjust_address_nv (operands[0], Pmode, 0);
- operands[2] = adjust_address_nv (operands[0], Pmode, GET_MODE_SIZE (Pmode));
+ operands[0] = adjust_address (operands[0], Pmode, 0);
+ operands[2] = adjust_address (operands[0], Pmode, GET_MODE_SIZE (Pmode));
operands[3] = gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM);
})
@@ -6714,7 +6714,7 @@
(match_operand 1 "memory_operand" ""))]
""
{
- operands[1] = adjust_address_nv (operands[1], Pmode, 0);
+ operands[1] = adjust_address (operands[1], Pmode, 0);
})
(define_expand "nonlocal_goto"
@@ -6726,9 +6726,9 @@
{
rtx i7 = gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM);
rtx r_label = copy_to_reg (operands[1]);
- rtx r_sp = adjust_address_nv (operands[2], Pmode, 0);
+ rtx r_sp = adjust_address (operands[2], Pmode, 0);
rtx r_fp = operands[3];
- rtx r_i7 = adjust_address_nv (operands[2], Pmode, GET_MODE_SIZE (Pmode));
+ rtx r_i7 = adjust_address (operands[2], Pmode, GET_MODE_SIZE (Pmode));
/* We need to flush all the register windows so that their contents will
be re-synchronized by the restore insn of the target function. */