diff options
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/ada/utils2.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 27f6361a0ff..5d5187771ef 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,5 +1,7 @@ 2004-08-27 Nathan Sidwell <nathan@codesourcery.com> + * utils2.c (build_allocator): Use ssize_int. + * utils.c (gnat_init_decl_processing): Ada has a signed sizetype. 2004-08-27 Andreas Schwab <schwab@suse.de> diff --git a/gcc/ada/utils2.c b/gcc/ada/utils2.c index 10da013f91e..093e6f00fee 100644 --- a/gcc/ada/utils2.c +++ b/gcc/ada/utils2.c @@ -1799,7 +1799,7 @@ build_allocator (tree type, tree init, tree result_type, Entity_Id gnat_proc, /* If the size overflows, pass -1 so the allocator will raise storage error. */ if (TREE_CODE (size) == INTEGER_CST && TREE_OVERFLOW (size)) - size = build_int_cst (ssizetype, -1); + size = ssize_int (-1); storage = build_call_alloc_dealloc (NULL_TREE, size, TYPE_ALIGN (storage_type), @@ -1872,7 +1872,7 @@ build_allocator (tree type, tree init, tree result_type, Entity_Id gnat_proc, /* If the size overflows, pass -1 so the allocator will raise storage error. */ if (TREE_CODE (size) == INTEGER_CST && TREE_OVERFLOW (size)) - size = build_int_cst (ssizetype, -1); + size = ssize_int (-1); /* If this is a type whose alignment is larger than the biggest we support in normal alignment and this is in |