From e2855dd3223f83e7638d1698622861d5e98cb1b2 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 3 Sep 2021 14:19:02 -0700 Subject: pp: Set location column to 1 after line directive --- pp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pp.c b/pp.c index 96f76fc..a1e6e11 100644 --- a/pp.c +++ b/pp.c @@ -337,6 +337,7 @@ directive(void) tokencheck(&tok, TNUMBER, "after #line"); line: newloc.line = strtoull(tok.lit, NULL, 0); + newloc.col = 1; scan(&tok); newloc.file = tok.loc.file; if (tok.kind == TSTRINGLIT) { -- cgit v1.2.3