fuhsnn / slimcc

C11 compiler with GNU extensions for x86-64 Linux, working towards C23
MIT License
34 stars 4 forks source link

Line-control can mess up `.loc` of macro expanded tokens #24

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago
#define M return i + 3 ;

#line 1
int f(int i) { M } // expect ".loc 1 1", got ".loc 1 -2"