Commit dfb0e60d by Andrey Belevantsev Committed by Andrey Belevantsev

sel-sched-dump.c: Surround with #ifdef INSN_SCHEDULING.

        * sel-sched-dump.c: Surround with #ifdef INSN_SCHEDULING.
        * sched-int.h (print_insn, print_pattern, print_value): Declare also
        when !INSN_SCHEDULING.

From-SVN: r139862
parent 8a88c276
2008-09-01 Andrey Belevantsev <abel@ispras.ru>
* sel-sched-dump.c: Surround with #ifdef INSN_SCHEDULING.
* sched-int.h (print_insn, print_pattern, print_value): Declare also
when !INSN_SCHEDULING.
2008-09-01 Andreas Schwab <schwab@suse.de>
* config/ia64/ia64.c (TARGET_ADDRESS_COST): Update.
......
......@@ -157,11 +157,6 @@ extern rtx bb_note (basic_block);
extern void reemit_notes (rtx);
/* Functions in sched-vis.c. */
extern void print_insn (char *, const_rtx, int);
extern void print_pattern (char *, const_rtx, int);
extern void print_value (char *, const_rtx, int);
/* Functions in haifa-sched.c. */
extern int haifa_classify_insn (const_rtx);
......@@ -1368,4 +1363,10 @@ extern void sd_debug_lists (rtx, sd_list_types_def);
#endif /* INSN_SCHEDULING */
/* Functions in sched-vis.c. These must be outside INSN_SCHEDULING as
sched-vis.c is compiled always. */
extern void print_insn (char *, const_rtx, int);
extern void print_pattern (char *, const_rtx, int);
extern void print_value (char *, const_rtx, int);
#endif /* GCC_SCHED_INT_H */
......@@ -34,6 +34,8 @@ along with GCC; see the file COPYING3. If not see
#include "output.h"
#include "basic-block.h"
#include "cselib.h"
#ifdef INSN_SCHEDULING
#include "sel-sched-ir.h"
#include "sel-sched-dump.h"
......@@ -941,5 +943,5 @@ debug_mem_addr_value (rtx x)
debug_rtx (addr);
return t;
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment