From 738ac13c9e840d3d7c00e1be970b0cb9c1bc1151 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Fri, 8 Apr 2016 00:38:03 -0400 Subject: [PATCH 42/91] FIXME: reduce debug spew --- gcc/read-rtl.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index b3ff47c..8e3feb5 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -1362,8 +1362,6 @@ read_rtx_code (const char *code_name) if (strcmp (name.string, "bb")) error_at (bb_loc, "was expecting %qs", "bb"); file_location bb_idx_loc = read_name (&name); - /* FIXME: do something with this. */ - inform (bb_idx_loc, "got bb_idx_loc: %qs", name.string); int bb_idx = atoi (name.string); rtx_reader_ptr->add_fixup_note_insn_basic_block (bb_loc, return_rtx, i, @@ -1603,10 +1601,6 @@ read_rtx_code (const char *code_name) case 'B': { file_location loc = read_name_or_nil (&name); -#ifndef GENERATOR_FILE - inform (loc, "FIXME: do something with basic block ID: %qs", - name.string); -#endif int bb_idx = atoi (name.string); if (bb_idx) rtx_reader_ptr->add_fixup_bb (loc, return_rtx, i, bb_idx); -- 1.8.5.3