Andreas Schwab wrote:
../../gcc/ada/gcc-interface/misc.c: In function 'const char*
gnat_printable_name(tree, int)':
../../gcc/ada/gcc-interface/misc.c:562:47: error: 'DECL_IS_BUILTIN' was
not declared in this scope
if (verbosity == 2 && !DECL_IS_BUILTIN (decl))
should be fixed by
https:
../../gcc/ada/gcc-interface/misc.c: In function 'const char*
gnat_printable_name(tree, int)':
../../gcc/ada/gcc-interface/misc.c:562:47: error: 'DECL_IS_BUILTIN' was not
declared in this scope
if (verbosity == 2 && !DECL_IS_BUILTIN (decl))
Andreas.
--
Andreas Schwab, sch...@linux-m68k.org
G
On 10/23/20 6:48 AM, Nathan Sidwell wrote:
> Patch affects C++, C, GO, common-core
>
> In cleaning up C++'s handling of hidden decls, I renamed its
> DECL_BUILTIN_P, which checks for loc == BUILTINS_LOCATION to
> DECL_UNDECLARED_BUILTIN_P, because the location gets updated, if user
> source decla
On 10/23/20 8:48 AM, Nathan Sidwell wrote:
Patch affects C++, C, GO, common-core
ping?
In cleaning up C++'s handling of hidden decls, I renamed its
DECL_BUILTIN_P, which checks for loc == BUILTINS_LOCATION to
DECL_UNDECLARED_BUILTIN_P, because the location gets updated, if user
source decla
Patch affects C++, C, GO, common-core
In cleaning up C++'s handling of hidden decls, I renamed its
DECL_BUILTIN_P, which checks for loc == BUILTINS_LOCATION to
DECL_UNDECLARED_BUILTIN_P, because the location gets updated, if user
source declares the builtin, and the predicate no longer holds.