Snapshot gcc-13-20250619 is now available on
https://gcc.gnu.org/pub/gcc/snapshots/13-20250619/
and on various mirrors, see https://gcc.gnu.org/mirrors.html for details.
This snapshot has been generated from the GCC 13 git branch
with the following options: git://gcc.gnu.org/git/gcc.git branch
> -Original Message-
> From: Basile Starynkevitch
> Sent: Thursday, June 19, 2025 11:51
> To: Bob Dubner
> Cc: gcc@gcc.gnu.org
> Subject: GCC harm in ARM
>
> HEllo,
>
>
> Bob Dubner wrote on gcc@
> >
> > Thus, the statement
> >
> > CALL "foo"
> >
> > might be the equivalent, imp
HEllo,
Bob Dubner wrote on gcc@
>
> Thus, the statement
>
> CALL "foo"
>
> might be the equivalent, implemented in C, of
>
> extern foo(...); //External reference
> foo();
>
> or
>
> static foo(...); // Forward reference to a static
> function
> foo();
>
>