OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / target-globals.h
index a0cf737..166f21a 100644 (file)
@@ -33,6 +33,8 @@ extern struct target_cfgloop *this_target_cfgloop;
 extern struct target_ira *this_target_ira;
 extern struct target_ira_int *this_target_ira_int;
 extern struct target_builtins *this_target_builtins;
+extern struct target_gcse *this_target_gcse;
+extern struct target_bb_reorder *this_target_bb_reorder;
 
 struct GTY(()) target_globals {
   struct target_flag_state *GTY((skip)) flag_state;
@@ -47,6 +49,8 @@ struct GTY(()) target_globals {
   struct target_ira *GTY((skip)) ira;
   struct target_ira_int *GTY((skip)) ira_int;
   struct target_builtins *GTY((skip)) builtins;
+  struct target_gcse *GTY((skip)) gcse;
+  struct target_bb_reorder *GTY((skip)) bb_reorder;
 };
 
 extern struct target_globals default_target_globals;
@@ -68,6 +72,8 @@ restore_target_globals (struct target_globals *g)
   this_target_ira = g->ira;
   this_target_ira_int = g->ira_int;
   this_target_builtins = g->builtins;
+  this_target_gcse = g->gcse;
+  this_target_bb_reorder = g->bb_reorder;
 }
 #endif