aboutsummaryrefslogtreecommitdiffstats
path: root/iirs_utils.adb
diff options
context:
space:
mode:
authorgingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7>2008-08-30 13:30:19 +0000
committergingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7>2008-08-30 13:30:19 +0000
commitcd9300765e7e3fd43e450777e98a778146f700c2 (patch)
treef013fea17ae4eee9c1649e63b99b9bfe377fafb4 /iirs_utils.adb
parent4b6571671497ecc1f846bfa49678254e14511fc9 (diff)
downloadghdl-cd9300765e7e3fd43e450777e98a778146f700c2.tar.gz
ghdl-cd9300765e7e3fd43e450777e98a778146f700c2.tar.bz2
ghdl-cd9300765e7e3fd43e450777e98a778146f700c2.zip
Switch to gcc 4.3
Don't use tagged types in grt (not supported by recent versions of GNAT) Fix warnings
Diffstat (limited to 'iirs_utils.adb')
-rw-r--r--iirs_utils.adb3
1 files changed, 1 insertions, 2 deletions
diff --git a/iirs_utils.adb b/iirs_utils.adb
index a3ca40820..4d64f3478 100644
--- a/iirs_utils.adb
+++ b/iirs_utils.adb
@@ -15,7 +15,6 @@
-- along with GCC; see the file COPYING. If not, write to the Free
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-- 02111-1307, USA.
-with Types; use Types;
with Scan; use Scan;
with Tokens; use Tokens;
with Errorout; use Errorout;
@@ -653,7 +652,7 @@ package body Iirs_Utils is
function Is_Unidim_Array_Type (A_Type : Iir) return Boolean
is
- Base_Type : Iir := Get_Base_Type (A_Type);
+ Base_Type : constant Iir := Get_Base_Type (A_Type);
begin
if Get_Kind (Base_Type) = Iir_Kind_Array_Type_Definition
and then Get_Nbr_Elements (Get_Index_Subtype_List (Base_Type)) = 1