aboutsummaryrefslogtreecommitdiff
path: root/gcc/ddg.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ddg.c')
-rw-r--r--gcc/ddg.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ddg.c b/gcc/ddg.c
index f51c5dc4e29..1032e513e98 100644
--- a/gcc/ddg.c
+++ b/gcc/ddg.c
@@ -43,12 +43,15 @@ along with GCC; see the file COPYING3. If not see
#include "expr.h"
#include "bitmap.h"
#include "ddg.h"
+#include "multi-target.h"
#ifdef INSN_SCHEDULING
/* A flag indicating that a ddg edge belongs to an SCC or not. */
enum edge_flag {NOT_IN_SCC = 0, IN_SCC};
+START_TARGET_SPECIFIC
+
/* Forward declarations. */
static void add_backarc_to_ddg (ddg_ptr, ddg_edge_ptr);
static void add_backarc_to_scc (ddg_scc_ptr, ddg_edge_ptr);
@@ -1132,4 +1135,6 @@ longest_simple_path (struct ddg * g, int src, int dest, sbitmap nodes)
return result;
}
+END_TARGET_SPECIFIC
+
#endif /* INSN_SCHEDULING */