Commit 00174bdf by Kazu Hirata Committed by Jeff Law

* integrate.c: Fix formatting.

From-SVN: r36319
parent 181d2ba0
2000-09-11 Kazu Hirata <kazu@hxi.com>
* integrate.c: Fix formatting.
2000-09-11 Geoff Keating <geoffk@cygnus.com> 2000-09-11 Geoff Keating <geoffk@cygnus.com>
* alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry. * alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry.
......
...@@ -20,7 +20,6 @@ along with GNU CC; see the file COPYING. If not, write to ...@@ -20,7 +20,6 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330, the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
#include "config.h" #include "config.h"
#include "system.h" #include "system.h"
...@@ -118,7 +117,7 @@ get_label_from_map (map, i) ...@@ -118,7 +117,7 @@ get_label_from_map (map, i)
rtx x = map->label_map[i]; rtx x = map->label_map[i];
if (x == NULL_RTX) if (x == NULL_RTX)
x = map->label_map[i] = gen_label_rtx(); x = map->label_map[i] = gen_label_rtx ();
return x; return x;
} }
...@@ -1060,7 +1059,7 @@ expand_inline_function (fndecl, parms, target, ignore, type, ...@@ -1060,7 +1059,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
arriving_mode = departing_mode; arriving_mode = departing_mode;
} }
else else
abort(); abort ();
} }
target = gen_reg_rtx (departing_mode); target = gen_reg_rtx (departing_mode);
...@@ -1100,7 +1099,7 @@ expand_inline_function (fndecl, parms, target, ignore, type, ...@@ -1100,7 +1099,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
/* Initialize label_map. get_label_from_map will actually make /* Initialize label_map. get_label_from_map will actually make
the labels. */ the labels. */
bzero ((char *) &map->label_map [min_labelno], bzero ((char *) &map->label_map[min_labelno],
(max_labelno - min_labelno) * sizeof (rtx)); (max_labelno - min_labelno) * sizeof (rtx));
/* Make copies of the decls of the symbols in the inline function, so that /* Make copies of the decls of the symbols in the inline function, so that
...@@ -1527,7 +1526,7 @@ copy_insn_list (insns, map, static_chain_value) ...@@ -1527,7 +1526,7 @@ copy_insn_list (insns, map, static_chain_value)
rtx label rtx label
= get_label_from_map (map, NOTE_EH_HANDLER (copy)); = get_label_from_map (map, NOTE_EH_HANDLER (copy));
/* we have to duplicate the handlers for the original */ /* We have to duplicate the handlers for the original. */
if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG) if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG)
{ {
/* We need to duplicate the handlers for the EH region /* We need to duplicate the handlers for the EH region
...@@ -1887,7 +1886,7 @@ copy_rtx_and_substitute (orig, map, for_lhs) ...@@ -1887,7 +1886,7 @@ copy_rtx_and_substitute (orig, map, for_lhs)
copy = gen_rtx_ADDRESSOF (mode, copy = gen_rtx_ADDRESSOF (mode,
copy_rtx_and_substitute (XEXP (orig, 0), copy_rtx_and_substitute (XEXP (orig, 0),
map, for_lhs), map, for_lhs),
0, ADDRESSOF_DECL(orig)); 0, ADDRESSOF_DECL (orig));
regno = ADDRESSOF_REGNO (orig); regno = ADDRESSOF_REGNO (orig);
if (map->reg_map[regno]) if (map->reg_map[regno])
regno = REGNO (map->reg_map[regno]); regno = REGNO (map->reg_map[regno]);
...@@ -2007,8 +2006,7 @@ copy_rtx_and_substitute (orig, map, for_lhs) ...@@ -2007,8 +2006,7 @@ copy_rtx_and_substitute (orig, map, for_lhs)
copy_rtx_and_substitute (constant, map, for_lhs)), copy_rtx_and_substitute (constant, map, for_lhs)),
0); 0);
} }
else else if (SYMBOL_REF_NEED_ADJUST (orig))
if (SYMBOL_REF_NEED_ADJUST (orig))
{ {
eif_eh_map = map; eif_eh_map = map;
return rethrow_symbol_map (orig, return rethrow_symbol_map (orig,
......
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