diff options
author | Ian Lance Taylor <iant@google.com> | 2009-06-16 19:09:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2009-06-16 19:09:35 +0000 |
commit | c32e217521694597c3e365052b29db5ffab62e8f (patch) | |
tree | 480991f082b6c683216c9004d1c264dd5da89a4a | |
parent | 415a06c203004a790433cf7ed41ce24af5acc8da (diff) | |
download | gcc-c32e217521694597c3e365052b29db5ffab62e8f.zip gcc-c32e217521694597c3e365052b29db5ffab62e8f.tar.gz gcc-c32e217521694597c3e365052b29db5ffab62e8f.tar.bz2 |
sel-sched.c: Make forward declarations of move_op_hooks and fur_hooks explicitly extern.
* sel-sched.c: Make forward declarations of move_op_hooks and
fur_hooks explicitly extern.
From-SVN: r148549
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/sel-sched.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e62a02f..ee3c61f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2009-06-16 Ian Lance Taylor <iant@google.com> + * sel-sched.c: Make forward declarations of move_op_hooks and + fur_hooks explicitly extern. + +2009-06-16 Ian Lance Taylor <iant@google.com> + * df-problems.c (df_byte_lr_alloc): Don't set problem_data to itself. * vec.c (vec_gc_o_reserve_1): Don't set alloc to itself. diff --git a/gcc/sel-sched.c b/gcc/sel-sched.c index a7dedc5..7ec31f1 100644 --- a/gcc/sel-sched.c +++ b/gcc/sel-sched.c @@ -448,7 +448,7 @@ struct code_motion_path_driver_info_def *code_motion_path_driver_info; /* Set of hooks for performing move_op and find_used_regs routines with code_motion_path_driver. */ -struct code_motion_path_driver_info_def move_op_hooks, fur_hooks; +extern struct code_motion_path_driver_info_def move_op_hooks, fur_hooks; /* True if/when we want to emulate Haifa scheduler in the common code. This is used in sched_rgn_local_init and in various places in |