aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/decl.c
diff options
context:
space:
mode:
authorTomas Bily <tbily@suse.cz>2008-05-12 16:20:35 +0200
committerTomas Bily <tomby@gcc.gnu.org>2008-05-12 16:20:35 +0200
commit751d1520c31199d7a67e8c3caaed4e4af90fcb75 (patch)
tree4f9197dd372e807b35158d95c6870719d2c538c5 /gcc/ada/decl.c
parent63a906f02b620920f146512e2c5572b2ae5314f8 (diff)
downloadgcc-751d1520c31199d7a67e8c3caaed4e4af90fcb75.zip
gcc-751d1520c31199d7a67e8c3caaed4e4af90fcb75.tar.gz
gcc-751d1520c31199d7a67e8c3caaed4e4af90fcb75.tar.bz2
* utils2.c (known_alignment, contains_save_expr_p)
(gnat_mark_addressable): Use CASE_CONVERT. * decl.c (annotate_value): Likewise. * trans.c (maybe_stabilize_reference): Likewise. * utils2.c (build_binary_op): Use CONVERT_EXPR_P. * utils.c (rest_of_record_type_compilation): Likewise. * trans.c (protect_multiple_eval, Attribute_to_gnu) (protect_multiple_eval): Likewise. From-SVN: r135215
Diffstat (limited to 'gcc/ada/decl.c')
-rw-r--r--gcc/ada/decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/decl.c b/gcc/ada/decl.c
index 6e14492..8565305 100644
--- a/gcc/ada/decl.c
+++ b/gcc/ada/decl.c
@@ -6622,7 +6622,7 @@ annotate_value (tree gnu_size)
else
return No_Uint;
- case NOP_EXPR: case CONVERT_EXPR: case NON_LVALUE_EXPR:
+ CASE_CONVERT: case NON_LVALUE_EXPR:
return annotate_value (TREE_OPERAND (gnu_size, 0));
/* Now just list the operations we handle. */