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>
* stamp-xgnatug: New stamp file.
......
......@@ -5156,9 +5156,9 @@ protect_multiple_eval (tree exp)
tree
gnat_stabilize_reference (tree ref, int force)
{
register tree type = TREE_TYPE (ref);
register enum tree_code code = TREE_CODE (ref);
register tree result;
tree type = TREE_TYPE (ref);
enum tree_code code = TREE_CODE (ref);
tree result;
switch (code)
{
......@@ -5252,9 +5252,9 @@ gnat_stabilize_reference (tree ref, int force)
static tree
gnat_stabilize_reference_1 (tree e, int force)
{
register enum tree_code code = TREE_CODE (e);
register tree type = TREE_TYPE (e);
register tree result;
enum tree_code code = TREE_CODE (e);
tree type = TREE_TYPE (e);
tree result;
/* We cannot ignore const expressions because it might be a reference
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