aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndreas Tobler <toa@pop.agri.ch>2003-06-20 18:36:09 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-06-20 18:36:09 +0200
commit3a9476696caa7ef0cea761530df25647b8dbbe0b (patch)
tree11306749ae924da52bd2071ea6795ba2fa8a134a /gcc
parenta3237033a13e9f2b625e7b6cd43b1f83a4531c90 (diff)
downloadgcc-3a9476696caa7ef0cea761530df25647b8dbbe0b.zip
gcc-3a9476696caa7ef0cea761530df25647b8dbbe0b.tar.gz
gcc-3a9476696caa7ef0cea761530df25647b8dbbe0b.tar.bz2
c-format.c: Change _Bool to bool reverting part of the last patch.
2003-06-20 Andreas Tobler <toa@pop.agri.ch> * c-format.c: Change _Bool to bool reverting part of the last patch. From-SVN: r68273
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/c-format.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c12c7ff..1cb9a03 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-20 Andreas Tobler <toa@pop.agri.ch>
+
+ * c-format.c: Change _Bool to bool reverting part of the last
+ patch.
+
2003-06-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* som.h (ASM_OUTPUT_SOURCE_LINE): Use targetm.strip_name_encoding to
diff --git a/gcc/c-format.c b/gcc/c-format.c
index d0138ee..b13848f 100644
--- a/gcc/c-format.c
+++ b/gcc/c-format.c
@@ -80,7 +80,7 @@ static bool get_constant (tree expr, unsigned HOST_WIDE_INT *value,
struct attribute_spec.handler. */
tree
handle_format_arg_attribute (tree *node, tree name ATTRIBUTE_UNUSED,
- tree args, int flags, _Bool *no_add_attrs)
+ tree args, int flags, bool *no_add_attrs)
{
tree type = *node;
tree format_num_expr = TREE_VALUE (args);
@@ -2395,7 +2395,7 @@ init_dynamic_asm_fprintf_info (void)
struct attribute_spec.handler. */
tree
handle_format_attribute (tree *node, tree name ATTRIBUTE_UNUSED, tree args,
- int flags, _Bool *no_add_attrs)
+ int flags, bool *no_add_attrs)
{
tree type = *node;
function_format_info info;