Re: [Tinycc-devel] Bug found in TCC

2021-04-30 Thread Christian Jullien
@nongnu.org Subject: Re: [Tinycc-devel] Bug found in TCC FYI mod seems to be fixed (at least on RPi): jullien@sims4:~ $ tcc foo.c -o foo && ./foo Hello, world! 4.10, 1.10, 2.20, 3.30 -Original Message- From: Tinycc-devel [mailto:tinycc-devel-bounces+eligis=orange...@nongnu.org] O

Re: [Tinycc-devel] Bug found in TCC

2021-04-30 Thread Christian Jullien
April 30, 2021 12:10 To: tinycc-devel@nongnu.org Subject: [Tinycc-devel] Bug found in TCC Hi! I found an issue with the tcc compiler. Simple code snippet is in the attachment. I am running tcc version 0.9.27 (x86_64 Linux). Regards, Ben ___ Tinycc-devel

Re: [Tinycc-devel] Bug found in TCC

2021-04-30 Thread Christian Jullien
-devel-bounces+eligis=orange...@nongnu.org] On Behalf Of benja...@benjaminlipnik.eu Sent: Friday, April 30, 2021 12:10 To: tinycc-devel@nongnu.org Subject: [Tinycc-devel] Bug found in TCC Hi! I found an issue with the tcc compiler. Simple code snippet is in the attachment. I am running tcc version

[Tinycc-devel] Bug found in TCC

2021-04-30 Thread benjamin
Hi! I found an issue with the tcc compiler. Simple code snippet is in the attachment. I am running tcc version 0.9.27 (x86_64 Linux). Regards, Ben#include typedef struct { float x,y,z; }Vec3f; void hello (float a, Vec3f b) { printf("%.2f, %.2f, %.2f, %.2f\n", a, b.x, b.y, b.z); }