Commit 34d0205f by Doug Evans

(compile_file): Call new function init_regs.

(main): Delete call to init_reg_sets_1.

From-SVN: r7103
parent 961c4780
...@@ -102,6 +102,7 @@ extern void init_decl_processing (); ...@@ -102,6 +102,7 @@ extern void init_decl_processing ();
extern void init_obstacks (); extern void init_obstacks ();
extern void init_tree_codes (); extern void init_tree_codes ();
extern void init_rtl (); extern void init_rtl ();
extern void init_regs ();
extern void init_optabs (); extern void init_optabs ();
extern void init_stmt (); extern void init_stmt ();
extern void init_reg_sets (); extern void init_reg_sets ();
...@@ -2023,6 +2024,7 @@ compile_file (name) ...@@ -2023,6 +2024,7 @@ compile_file (name)
/* Some of these really don't need to be called when generating bytecode, /* Some of these really don't need to be called when generating bytecode,
but the options would have to be parsed first to know that. -bson */ but the options would have to be parsed first to know that. -bson */
init_rtl (); init_rtl ();
init_regs ();
init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
|| debug_info_level == DINFO_LEVEL_VERBOSE); || debug_info_level == DINFO_LEVEL_VERBOSE);
init_decl_processing (); init_decl_processing ();
...@@ -3842,10 +3844,6 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE! ...@@ -3842,10 +3844,6 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
print_switch_values (); print_switch_values ();
} }
/* Now that register usage is specified, convert it to HARD_REG_SETs. */
if (!output_bytecode)
init_reg_sets_1 ();
compile_file (filename); compile_file (filename);
#ifndef OS2 #ifndef OS2
......
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