aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBernardo Innocenti <bernie@gcc.gnu.org>2004-07-25 23:12:01 +0200
committerBernardo Innocenti <bernie@gcc.gnu.org>2004-07-25 23:12:01 +0200
commit4f3d87d661d99cb035d4f5cf72164f785fa270fc (patch)
tree6df83610d7173d253c2ca1d1f848babbffbca8d2 /gcc
parent5d038c4cb11480bb8ee68bdc71846a0abfe11f02 (diff)
downloadgcc-4f3d87d661d99cb035d4f5cf72164f785fa270fc.zip
gcc-4f3d87d661d99cb035d4f5cf72164f785fa270fc.tar.gz
gcc-4f3d87d661d99cb035d4f5cf72164f785fa270fc.tar.bz2
Add a few missing items to a ChangeLog entry of mine.
From-SVN: r85164
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 10d9060..c47dd7b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -110,6 +110,21 @@
* recog.h: Likewise.
* regrename.c: Likewise.
* tree.h: Likewise.
+ * c-common.c (builtin_function_2): Change type of 5th parameter from
+ int to enum built_in_function. Change type of 8th parameter from int
+ to bool.
+ * c-decl (builtin_function): Replace call to ggc_alloc_cleared ()
+ with GGC_CNEW().
+ * c-typeck.c (convert_arguments): Change type of formal_prec from
+ int to unsigned int.
+ * genmodes.c (blank_mode): Make a few negative constants unsigned.
+ (complete_all_modes, calc_wider_mode, emit_insn_modes_h,
+ emit_mode_name, emit_mode_class, emit_mode_precision, emit_mode_size,
+ emit_mode_nunits, emit_mode_wider, emit_mode_mask, emit_mode_inner,
+ emit_mode_base_align, emit_class_narrowest_mode): Pass an integer
+ iterator to for_all_modes () instead of an enum because enums can't
+ be incremented in C++.
+
2004-07-25 Daniel Jacobowitz <dan@debian.org>