OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / target-globals.h
index a1f4866..166f21a 100644 (file)
@@ -28,6 +28,13 @@ extern struct target_hard_regs *this_target_hard_regs;
 extern struct target_reload *this_target_reload;
 extern struct target_expmed *this_target_expmed;
 extern struct target_optabs *this_target_optabs;
+extern struct target_libfuncs *this_target_libfuncs;
+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;
@@ -37,6 +44,13 @@ struct GTY(()) target_globals {
   struct target_reload *GTY((skip)) reload;
   struct target_expmed *GTY((skip)) expmed;
   struct target_optabs *GTY((skip)) optabs;
+  struct target_libfuncs *libfuncs;
+  struct target_cfgloop *GTY((skip)) cfgloop;
+  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;
@@ -53,6 +67,13 @@ restore_target_globals (struct target_globals *g)
   this_target_reload = g->reload;
   this_target_expmed = g->expmed;
   this_target_optabs = g->optabs;
+  this_target_libfuncs = g->libfuncs;
+  this_target_cfgloop = g->cfgloop;
+  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