From cc979c0f1c58e51debc78af1c590ec3c35004c90 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 14 Jul 2008 13:36:34 +0000 Subject: [PATCH] don't emit N_EINCL/N_BINCL as it has to be a proper stack of header filenames apparently, we don't have that info anymore in firm. Instead use N_SOL which is good enough [r20440] --- ir/be/bestabs.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ir/be/bestabs.c b/ir/be/bestabs.c index 2c3b0291d..e522a55dc 100644 --- a/ir/be/bestabs.c +++ b/ir/be/bestabs.c @@ -618,12 +618,6 @@ static void stabs_set_dbg_info(dbg_handle *h, dbg_info *dbgi) return; if (handle->curr_file != fname) { - /* TODO: escape filename correctly */ - if (handle->curr_file != handle->main_file) { - be_emit_irprintf("\t.stabs\t\"%s\",%d,0,0,0\n", handle->curr_file, - N_EINCL); - be_emit_write_line(); - } if (fname != handle->main_file) { be_emit_irprintf("\t.stabs\t\"%s\",%d,0,0,0\n", fname, N_SOL); be_emit_write_line(); -- 2.20.1