aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface/utils2.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2009-10-17 11:05:35 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2009-10-17 11:05:35 +0000
commit3f273c8a53e786389658f14a0316e48a5e0de0b6 (patch)
treefd8d2040380c07dc46f6c8584fa8fb12829b0e61 /gcc/ada/gcc-interface/utils2.c
parent7fc6a96bed6d0b2511f56e246c5ca0c3058616aa (diff)
downloadgcc-3f273c8a53e786389658f14a0316e48a5e0de0b6.zip
gcc-3f273c8a53e786389658f14a0316e48a5e0de0b6.tar.gz
gcc-3f273c8a53e786389658f14a0316e48a5e0de0b6.tar.bz2
utils2.c (build_binary_op): Make sure the element type is consistent.
* gcc-interface/utils2.c (build_binary_op) <ARRAY_RANGE_REF>: Make sure the element type is consistent. From-SVN: r152934
Diffstat (limited to 'gcc/ada/gcc-interface/utils2.c')
-rw-r--r--gcc/ada/gcc-interface/utils2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ada/gcc-interface/utils2.c b/gcc/ada/gcc-interface/utils2.c
index fcd9ecd..7176740 100644
--- a/gcc/ada/gcc-interface/utils2.c
+++ b/gcc/ada/gcc-interface/utils2.c
@@ -755,6 +755,12 @@ build_binary_op (enum tree_code op_code, tree result_type,
left_type = TREE_TYPE (left_operand);
}
+ /* For a range, make sure the element type is consistent. */
+ if (op_code == ARRAY_RANGE_REF
+ && TREE_TYPE (operation_type) != TREE_TYPE (left_type))
+ operation_type = build_array_type (TREE_TYPE (left_type),
+ TYPE_DOMAIN (operation_type));
+
/* Then convert the right operand to its base type. This will prevent
unneeded sign conversions when sizetype is wider than integer. */
right_operand = convert (right_base_type, right_operand);