aboutsummaryrefslogtreecommitdiff
path: root/gcc
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
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')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 86f65a3..4f29242 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-29 Neil Booth <neil@daikokuya.demon.co.uk>
+
+ * tree.c (build_nonstandard_integer_type): Correct prototype.
+
2002-01-29 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.md (movstrsico, movstrdix_64,
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);