Re: [Tinycc-devel] manually inlining functions

2021-05-04 Thread uso ewin
On Sat, May 1, 2021 at 5:35 PM Vincent Lefevre wrote: > > On 2021-04-30 20:50:36 -0700, Elijah Stone wrote: > > On Sat, 1 May 2021, Yakov wrote: > > > > > having to write macros for performance feels so obsolete, double > > > evaluation hiding in dark corners etc. And function calls are so > > > e

Re: [Tinycc-devel] Empy preprocessor lexeme bug

2021-05-04 Thread Temirkhan Myrzamadi
Thank you! On 5/4/21, Herman ten Brugge via Tinycc-devel wrote: > I just pushed a fix for this. > > Herman > > On 5/3/21 10:04 AM, Christian Jullien wrote: >> Indeed, I can reproduce with mob with this snippet: >> >> #include >> >> #define CALL(f, ...) f(__VA_ARGS__) >> #define CONST()

Re: [Tinycc-devel] Empy preprocessor lexeme bug

2021-05-04 Thread Herman ten Brugge via Tinycc-devel
I just pushed a fix for this.     Herman On 5/3/21 10:04 AM, Christian Jullien wrote: Indeed, I can reproduce with mob with this snippet: #include #define CALL(f, ...) f(__VA_ARGS__) #define CONST() 123 int main() { printf("%d\n", CALL(CONST, )); } It works with clang and gc