From 06bc778c13c8511ba8bc4c061dd59270c1a5e07c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 21 Dec 2023 20:11:34 -0500 Subject: sim: m32c: fix initial #line number in generated code This emits #line 2 for the first line in the output when it should be 1. --- sim/m32c/opc2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/m32c/opc2c.c b/sim/m32c/opc2c.c index da4da1c..113e390 100644 --- a/sim/m32c/opc2c.c +++ b/sim/m32c/opc2c.c @@ -282,7 +282,7 @@ dump_lines (opcode * op, int level, Indirect * ind) varnames[i], (i < vn - 1) ? "," : "\\n", varnames[i]); printf ("%*s }\n", level, ""); } - printf ("#line %d \"%s\"\n", op->lineno + 1, orig_filename); + printf ("#line %d \"%s\"\n", op->lineno, orig_filename); for (i = 0; i < op->nlines; i++) printf ("%*s%s", level, "", op->lines[i]); if (op->comment) -- cgit v1.1