Commit 1b28cd06 by Kazu Hirata Committed by Kazu Hirata

regclass.c (reg_class_superclasses, [...]): Make them static.

	* regclass.c (reg_class_superclasses, reg_class_subclasses):
	Make them static.
	* hard-reg-set.h: Remove the corresponding declarations.

From-SVN: r96410
parent 7b25e663
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
* function.c (get_func_frame_size): Make it static. * function.c (get_func_frame_size): Make it static.
* function.h: Remove the corresponding type. * function.h: Remove the corresponding type.
* regclass.c (reg_class_superclasses, reg_class_subclasses):
Make them static.
* hard-reg-set.h: Remove the corresponding declarations.
2005-03-14 Alan Modra <amodra@bigpond.net.au> 2005-03-14 Alan Modra <amodra@bigpond.net.au>
* config.gcc: Remove excess indentation. * config.gcc: Remove excess indentation.
......
...@@ -464,14 +464,6 @@ extern HARD_REG_SET reg_class_contents[N_REG_CLASSES]; ...@@ -464,14 +464,6 @@ extern HARD_REG_SET reg_class_contents[N_REG_CLASSES];
extern unsigned int reg_class_size[N_REG_CLASSES]; extern unsigned int reg_class_size[N_REG_CLASSES];
/* For each reg class, table listing all the containing classes. */
extern enum reg_class reg_class_superclasses[N_REG_CLASSES][N_REG_CLASSES];
/* For each reg class, table listing all the classes contained in it. */
extern enum reg_class reg_class_subclasses[N_REG_CLASSES][N_REG_CLASSES];
/* For each pair of reg classes, /* For each pair of reg classes,
a largest reg class contained in their union. */ a largest reg class contained in their union. */
......
...@@ -172,11 +172,11 @@ unsigned int reg_class_size[N_REG_CLASSES]; ...@@ -172,11 +172,11 @@ unsigned int reg_class_size[N_REG_CLASSES];
/* For each reg class, table listing all the containing classes. */ /* For each reg class, table listing all the containing classes. */
enum reg_class reg_class_superclasses[N_REG_CLASSES][N_REG_CLASSES]; static enum reg_class reg_class_superclasses[N_REG_CLASSES][N_REG_CLASSES];
/* For each reg class, table listing all the classes contained in it. */ /* For each reg class, table listing all the classes contained in it. */
enum reg_class reg_class_subclasses[N_REG_CLASSES][N_REG_CLASSES]; static enum reg_class reg_class_subclasses[N_REG_CLASSES][N_REG_CLASSES];
/* For each pair of reg classes, /* For each pair of reg classes,
a largest reg class contained in their union. */ a largest reg class contained in their union. */
......
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