aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2002-01-29 19:10:28 +0000
committerNeil Booth <neil@gcc.gnu.org>2002-01-29 19:10:28 +0000
commit2d3115eb53cf2bb3f63f5c94b8ab0b584b3b7dea (patch)
tree5d1e2e6ac459418d5ca1c4a7f96c1dd4615a55b9 /gcc/tree.c
parentecbe845e2db207fa1f25ad71e9b67a0f60454929 (diff)
downloadgcc-2d3115eb53cf2bb3f63f5c94b8ab0b584b3b7dea.zip
gcc-2d3115eb53cf2bb3f63f5c94b8ab0b584b3b7dea.tar.gz
gcc-2d3115eb53cf2bb3f63f5c94b8ab0b584b3b7dea.tar.bz2
* tree.c (build_nonstandard_integer_type): Correct prototype.
From-SVN: r49326
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 8d22d68..76b341a 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -3763,7 +3763,7 @@ build_index_type (maxval)
built-in target types. */
tree
build_nonstandard_integer_type (precision, unsignedp)
- unsigned HOST_WIDE_INT precision;
+ unsigned int precision;
int unsignedp;
{
tree itype = make_node (INTEGER_TYPE);