aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/simplify-rtx.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e9f24b4..40b8b6b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-29 Uros Bizjak <ubizjak@gmail.com>
+
+ * simplify-rtx.c (simplify_binary_operation_1) [VEC_SELECT]:
+ Change CONST_VECTOR_ELT to XVECEXP in elem calculation.
+
2007-08-29 Richard Guenther <rguenther@suse.de>
* tree-pretty-print.c (dump_generic_node): Print
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c
index 3271a86..3a8e8ed 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)