Bgug. Chug

2023-12-23 Thread Day'ze Williams via Gcc
Sent from my iPhone

gcc-13-20231223 is now available

2023-12-23 Thread GCC Administrator via Gcc
Snapshot gcc-13-20231223 is now available on https://gcc.gnu.org/pub/gcc/snapshots/13-20231223/ 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: int8_t lives matter

2023-12-23 Thread Jonathan Wakely via Gcc
On Fri, 22 Dec 2023, 22:04 Andrew Pinski via Gcc, wrote: > On Fri, Dec 22, 2023 at 1:54 PM Olavi Esker via Gcc > wrote: > > > > Hello, > > > > #include > > #include > > > > int main() > > { > > std::int8_t myInt{65}; > > myInt += 1; > > std::cout << myInt; > > } > > > > Guess what this returns