aboutsummaryrefslogtreecommitdiff
path: root/gcc/cse.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2008-12-04 11:44:41 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2008-12-04 11:44:41 +0000
commita4781348e23ac96865470f4b11c170e9f40a44d5 (patch)
tree287c5b2cb3bf4278623bdb6568ad1d8e4d862b07 /gcc/cse.c
parent5ab9749e294898d1185384624f312ec32b4ba9f1 (diff)
downloadgcc-a4781348e23ac96865470f4b11c170e9f40a44d5.zip
gcc-a4781348e23ac96865470f4b11c170e9f40a44d5.tar.gz
gcc-a4781348e23ac96865470f4b11c170e9f40a44d5.tar.bz2
* cse.c (equiv_constant): Fix pasto.
From-SVN: r142432
Diffstat (limited to 'gcc/cse.c')
-rw-r--r--gcc/cse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index e6ff630..f52f0a9 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -3651,7 +3651,7 @@ equiv_constant (rtx x)
if (REG_P (SUBREG_REG (x))
&& (new_rtx = equiv_constant (SUBREG_REG (x))) != 0)
- return simplify_subreg (GET_MODE (x), SUBREG_REG (x),
+ return simplify_subreg (GET_MODE (x), new_rtx,
GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
return 0;