Commit aed8bfdc by Kazu Hirata Committed by Kazu Hirata

trans.c: Remove uses of "register" specifier in declarations of local variables.

	* trans.c: Remove uses of "register" specifier in
	declarations of local variables.

From-SVN: r74880
parent 677f99cc
2003-12-20 Kazu Hirata <kazu@cs.umass.edu>
* trans.c: Remove uses of "register" specifier in
declarations of local variables.
2003-12-18 Kelley Cook <kcook@gcc.gnu.org> 2003-12-18 Kelley Cook <kcook@gcc.gnu.org>
* stamp-xgnatug: New stamp file. * stamp-xgnatug: New stamp file.
......
...@@ -5156,9 +5156,9 @@ protect_multiple_eval (tree exp) ...@@ -5156,9 +5156,9 @@ protect_multiple_eval (tree exp)
tree tree
gnat_stabilize_reference (tree ref, int force) gnat_stabilize_reference (tree ref, int force)
{ {
register tree type = TREE_TYPE (ref); tree type = TREE_TYPE (ref);
register enum tree_code code = TREE_CODE (ref); enum tree_code code = TREE_CODE (ref);
register tree result; tree result;
switch (code) switch (code)
{ {
...@@ -5252,9 +5252,9 @@ gnat_stabilize_reference (tree ref, int force) ...@@ -5252,9 +5252,9 @@ gnat_stabilize_reference (tree ref, int force)
static tree static tree
gnat_stabilize_reference_1 (tree e, int force) gnat_stabilize_reference_1 (tree e, int force)
{ {
register enum tree_code code = TREE_CODE (e); enum tree_code code = TREE_CODE (e);
register tree type = TREE_TYPE (e); tree type = TREE_TYPE (e);
register tree result; tree result;
/* We cannot ignore const expressions because it might be a reference /* We cannot ignore const expressions because it might be a reference
to a const array but whose index contains side-effects. But we can to a const array but whose index contains side-effects. But we can
......
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