Commit 0f290768 by Kazu Hirata Committed by Kazu Hirata

i386.c: Fix formatting.

2000-09-25  Kazu Hirata  <kazu@hxi.com>

	* config/i386/i386.c: Fix formatting.

From-SVN: r36628
parent e592386f
2000-09-25 Kazu Hirata <kazu@hxi.com>
* config/i386/i386.c: Fix formatting.
2000-09-24 Alan Lehotsky <alehotsky@cygnus.com> 2000-09-24 Alan Lehotsky <alehotsky@cygnus.com>
* emit-rtl-c (gen_lowpart_common): Accept non-paradoxical SUBREG when * emit-rtl-c (gen_lowpart_common): Accept non-paradoxical SUBREG when
......
...@@ -319,8 +319,6 @@ int const svr4_dbx_register_map[FIRST_PSEUDO_REGISTER] = ...@@ -319,8 +319,6 @@ int const svr4_dbx_register_map[FIRST_PSEUDO_REGISTER] =
29, 30, 31, 32, 33, 34, 35, 36, /* MMX registers */ 29, 30, 31, 32, 33, 34, 35, 36, /* MMX registers */
}; };
/* Test and compare insns in i386.md store the information needed to /* Test and compare insns in i386.md store the information needed to
generate branch and scc insns here. */ generate branch and scc insns here. */
...@@ -490,7 +488,7 @@ override_options () ...@@ -490,7 +488,7 @@ override_options ()
{"athlon", PROCESSOR_ATHLON}, {"athlon", PROCESSOR_ATHLON},
}; };
int const pta_size = sizeof(processor_alias_table)/sizeof(struct pta); int const pta_size = sizeof (processor_alias_table) / sizeof (struct pta);
#ifdef SUBTARGET_OVERRIDE_OPTIONS #ifdef SUBTARGET_OVERRIDE_OPTIONS
SUBTARGET_OVERRIDE_OPTIONS; SUBTARGET_OVERRIDE_OPTIONS;
...@@ -1824,7 +1822,7 @@ ix86_initial_elimination_offset (from, to) ...@@ -1824,7 +1822,7 @@ ix86_initial_elimination_offset (from, to)
else if (from == FRAME_POINTER_REGNUM else if (from == FRAME_POINTER_REGNUM
&& to == HARD_FRAME_POINTER_REGNUM) && to == HARD_FRAME_POINTER_REGNUM)
{ {
ix86_compute_frame_size (get_frame_size (), &nregs, &padding1, (int *)0); ix86_compute_frame_size (get_frame_size (), &nregs, &padding1, (int *) 0);
padding1 += nregs * UNITS_PER_WORD; padding1 += nregs * UNITS_PER_WORD;
return -padding1; return -padding1;
} }
...@@ -1833,8 +1831,7 @@ ix86_initial_elimination_offset (from, to) ...@@ -1833,8 +1831,7 @@ ix86_initial_elimination_offset (from, to)
/* ARG_POINTER or FRAME_POINTER to STACK_POINTER elimination. */ /* ARG_POINTER or FRAME_POINTER to STACK_POINTER elimination. */
int frame_size = frame_pointer_needed ? 8 : 4; int frame_size = frame_pointer_needed ? 8 : 4;
HOST_WIDE_INT tsize = ix86_compute_frame_size (get_frame_size (), HOST_WIDE_INT tsize = ix86_compute_frame_size (get_frame_size (),
&nregs, &padding1, (int *)0); &nregs, &padding1, (int *) 0);
if (to != STACK_POINTER_REGNUM) if (to != STACK_POINTER_REGNUM)
abort (); abort ();
...@@ -1948,8 +1945,8 @@ ix86_emit_save_regs () ...@@ -1948,8 +1945,8 @@ ix86_emit_save_regs ()
void void
ix86_expand_prologue () ix86_expand_prologue ()
{ {
HOST_WIDE_INT tsize = ix86_compute_frame_size (get_frame_size (), (int *)0, (int *)0, HOST_WIDE_INT tsize = ix86_compute_frame_size (get_frame_size (), (int *) 0, (int *) 0,
(int *)0); (int *) 0);
rtx insn; rtx insn;
int pic_reg_used = flag_pic && (current_function_uses_pic_offset_table int pic_reg_used = flag_pic && (current_function_uses_pic_offset_table
|| current_function_uses_const_pool); || current_function_uses_const_pool);
...@@ -2071,8 +2068,7 @@ ix86_expand_epilogue (emit_return) ...@@ -2071,8 +2068,7 @@ ix86_expand_epilogue (emit_return)
int sp_valid = !frame_pointer_needed || current_function_sp_is_unchanging; int sp_valid = !frame_pointer_needed || current_function_sp_is_unchanging;
HOST_WIDE_INT offset; HOST_WIDE_INT offset;
HOST_WIDE_INT tsize = ix86_compute_frame_size (get_frame_size (), &nregs, HOST_WIDE_INT tsize = ix86_compute_frame_size (get_frame_size (), &nregs,
(int *)0, (int *)0); (int *) 0, (int *) 0);
/* Calculate start of saved registers relative to ebp. */ /* Calculate start of saved registers relative to ebp. */
offset = -nregs * UNITS_PER_WORD; offset = -nregs * UNITS_PER_WORD;
...@@ -3121,7 +3117,7 @@ put_condition_code (code, mode, reverse, fp, file) ...@@ -3121,7 +3117,7 @@ put_condition_code (code, mode, reverse, fp, file)
/* ??? Use "nbe" instead of "a" for fcmov losage on some assemblers. /* ??? Use "nbe" instead of "a" for fcmov losage on some assemblers.
Those same assemblers have the same but opposite losage on cmov. */ Those same assemblers have the same but opposite losage on cmov. */
if (mode != CCmode) if (mode != CCmode)
abort(); abort ();
suffix = fp ? "nbe" : "a"; suffix = fp ? "nbe" : "a";
break; break;
case LT: case LT:
...@@ -3130,11 +3126,11 @@ put_condition_code (code, mode, reverse, fp, file) ...@@ -3130,11 +3126,11 @@ put_condition_code (code, mode, reverse, fp, file)
else if (mode == CCmode || mode == CCGCmode) else if (mode == CCmode || mode == CCGCmode)
suffix = "l"; suffix = "l";
else else
abort(); abort ();
break; break;
case LTU: case LTU:
if (mode != CCmode) if (mode != CCmode)
abort(); abort ();
suffix = "b"; suffix = "b";
break; break;
case GE: case GE:
...@@ -3143,12 +3139,12 @@ put_condition_code (code, mode, reverse, fp, file) ...@@ -3143,12 +3139,12 @@ put_condition_code (code, mode, reverse, fp, file)
else if (mode == CCmode || mode == CCGCmode) else if (mode == CCmode || mode == CCGCmode)
suffix = "ge"; suffix = "ge";
else else
abort(); abort ();
break; break;
case GEU: case GEU:
/* ??? As above. */ /* ??? As above. */
if (mode != CCmode) if (mode != CCmode)
abort(); abort ();
suffix = fp ? "nb" : "ae"; suffix = fp ? "nb" : "ae";
break; break;
case LE: case LE:
...@@ -4713,7 +4709,7 @@ ix86_cc_mode (code, op0, op1) ...@@ -4713,7 +4709,7 @@ ix86_cc_mode (code, op0, op1)
else else
return CCGCmode; return CCGCmode;
default: default:
abort(); abort ();
} }
} }
...@@ -6775,7 +6771,7 @@ ix86_sched_reorder_ppro (ready, e_ready) ...@@ -6775,7 +6771,7 @@ ix86_sched_reorder_ppro (ready, e_ready)
decoder, and we may find things that are decodable in the decoder, and we may find things that are decodable in the
same cycle. */ same cycle. */
memcpy (decode, ix86_sched_data.ppro.decode, sizeof(decode)); memcpy (decode, ix86_sched_data.ppro.decode, sizeof (decode));
issued_this_cycle = 0; issued_this_cycle = 0;
insnp = e_ready; insnp = e_ready;
...@@ -6843,7 +6839,6 @@ ix86_sched_reorder_ppro (ready, e_ready) ...@@ -6843,7 +6839,6 @@ ix86_sched_reorder_ppro (ready, e_ready)
ix86_sched_data.ppro.issued_this_cycle = issued_this_cycle; ix86_sched_data.ppro.issued_this_cycle = issued_this_cycle;
} }
/* We are about to being issuing insns for this clock cycle. /* We are about to being issuing insns for this clock cycle.
Override the default sort algorithm to better slot instructions. */ Override the default sort algorithm to better slot instructions. */
int int
...@@ -8273,5 +8268,4 @@ ix86_expand_builtin (exp, target, subtarget, mode, ignore) ...@@ -8273,5 +8268,4 @@ ix86_expand_builtin (exp, target, subtarget, mode, ignore)
fail: fail:
/* @@@ Should really do something sensible here. */ /* @@@ Should really do something sensible here. */
return 0; return 0;
} }
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