Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / lang / gcc / patches / patch-am
blobee555deb3f7a1428c92fbf08ccfcdeb17e580969
1 $NetBSD$
3 --- gcc/java/parse.c.orig       2001-03-16 14:13:48.000000000 +0000
4 +++ gcc/java/parse.c
5 @@ -12818,6 +12818,7 @@ resolve_type_during_patch (type)
6  }
7  /* 5.5 Casting Conversion. error_mark_node is returned if an error is
8     found. Otherwise NODE or something meant to replace it is returned.  */
9 +static tree convert_narrow ();
11  static tree
12  patch_cast (node, wfl_operator)
13 @@ -12836,7 +12837,6 @@ patch_cast (node, wfl_operator)
14    /* Check on cast that are proven correct at compile time */
15    if (JNUMERIC_TYPE_P (cast_type) && JNUMERIC_TYPE_P (op_type))
16      {
17 -      static tree convert_narrow ();
18        /* Same type */
19        if (cast_type == op_type)
20         return node;