pkgsrc/lang/gcc2/patches/patch-ai
2015-12-29 23:34:43 +00:00

22 lines
779 B
Text

$NetBSD: patch-ai,v 1.2 2015/12/29 23:34:47 dholland Exp $
Function declarations belong outside functions.
--- gcc/java/parse.y.orig 2010-10-12 22:33:34.000000000 +0000
+++ gcc/java/parse.y
@@ -10164,6 +10164,7 @@ resolve_type_during_patch (type)
}
/* 5.5 Casting Conversion. error_mark_node is returned if an error is
found. Otherwise NODE or something meant to replace it is returned. */
+static tree convert_narrow ();
static tree
patch_cast (node, wfl_operator)
@@ -10182,7 +10183,6 @@ patch_cast (node, wfl_operator)
/* Check on cast that are proven correct at compile time */
if (JNUMERIC_TYPE_P (cast_type) && JNUMERIC_TYPE_P (op_type))
{
- static tree convert_narrow ();
/* Same type */
if (cast_type == op_type)
return node;