diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-25 16:58:26 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-25 16:58:26 +0000 |
commit | 3971388f778d04d70c29c14cc0b13b6195c4c8da (patch) | |
tree | b5e617dbc41beab543899b216efc6fdc63f80bc5 /gcc/ada/utils.c | |
parent | bbdcab132657970d857fefbea2b88bd1d3140e73 (diff) | |
download | gcc-3971388f778d04d70c29c14cc0b13b6195c4c8da.tar.gz |
* decl.c (gnat_to_gnu_entity): Use TREE_OVERFLOW instead of
TREE_CONSTANT_OVERFLOW.
(allocatable_size_p, annotate_value): Likewise.
* trans.c (gnat_to_gnu): Likewise.
* utils.c (unchecked_convert): Likewise.
* utils2.c (build_simple_component_ref): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121177 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/utils.c')
-rw-r--r-- | gcc/ada/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/utils.c b/gcc/ada/utils.c index b5854faf74a..52bc6636eec 100644 --- a/gcc/ada/utils.c +++ b/gcc/ada/utils.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 1992-2006, Free Software Foundation, Inc. * + * Copyright (C) 1992-2007, Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -3680,7 +3680,7 @@ unchecked_convert (tree type, tree expr, bool notrunc_p) when it is false, we can rely on the fact that such conversions are erroneous anyway. */ if (TREE_CODE (expr) == INTEGER_CST) - TREE_OVERFLOW (expr) = TREE_CONSTANT_OVERFLOW (expr) = 0; + TREE_OVERFLOW (expr) = 0; /* If the sizes of the types differ and this is an VIEW_CONVERT_EXPR, show no longer constant. */ |