gcc-13-20250619 is now available

2025-06-19 Thread GCC Administrator via Gcc
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

RE: GCC harm in ARM

2025-06-19 Thread Bob Dubner
> -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

GCC harm in ARM

2025-06-19 Thread Basile Starynkevitch
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(); > >