summaryrefslogtreecommitdiff
path: root/gcc/simplify-rtx.c
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2007-08-29 17:00:38 +0200
committerUros Bizjak <uros@gcc.gnu.org>2007-08-29 17:00:38 +0200
commit3743c639c758aec63f1bbb3cc2da36fd35ee844f (patch)
tree787529c78056cf617895c5fde79ee60dbda5734a /gcc/simplify-rtx.c
parent7b74f495974a7d33d1dfd75deee2c18e831f4ba7 (diff)
downloadgcc-3743c639c758aec63f1bbb3cc2da36fd35ee844f.tar.gz
simplify-rtx.c (simplify_binary_operation_1): Change CONST_VECTOR_ELT to XVECEXP in elem calculation.
* simplify-rtx.c (simplify_binary_operation_1) [VEC_SELECT]: Change CONST_VECTOR_ELT to XVECEXP in elem calculation. From-SVN: r127902
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r--gcc/simplify-rtx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c
index 3271a864851..3a8e8ed688f 100644
--- a/gcc/simplify-rtx.c
+++ b/gcc/simplify-rtx.c
@@ -2685,7 +2685,7 @@ simplify_binary_operation_1 (enum rtx_code code, enum machine_mode mode,
gcc_assert (i < n_elts);
/* Select element, pointed by nested selector. */
- elem = INTVAL (CONST_VECTOR_ELT (op1, i));
+ elem = INTVAL (XVECEXP (op1, 0, i));
/* Handle the case when nested VEC_SELECT wraps VEC_CONCAT. */
if (GET_CODE (op0) == VEC_CONCAT)