This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

regclass.c formatting fixes



        * regclass.c: Fix minor whitespace problems.

Index: regclass.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/regclass.c,v
retrieving revision 1.84
diff -c -3 -p -r1.84 regclass.c
*** regclass.c	2000/01/03 15:23:56	1.84
--- regclass.c	2000/01/04 07:19:21
*************** scan_one_insn (insn, pass)
*** 974,980 ****
        return PREV_INSN (newinsn);
      }
  
!   record_operand_costs(insn, op_costs, reg_pref);
  
    /* Now add the cost for each operand to the total costs for
       its register.  */
--- 974,980 ----
        return PREV_INSN (newinsn);
      }
  
!   record_operand_costs (insn, op_costs, reg_pref);
  
    /* Now add the cost for each operand to the total costs for
       its register.  */
*************** regclass (f, nregs, dump)
*** 1126,1132 ****
        if (dump)
          {
  	  dump_regclass (dump);
! 	  fprintf(dump,"\n");
  	}
        for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++)
  	{
--- 1126,1132 ----
        if (dump)
          {
  	  dump_regclass (dump);
! 	  fprintf (dump,"\n");
  	}
        for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++)
  	{
*************** regclass (f, nregs, dump)
*** 1187,1193 ****
  		  || reg_pref[i].altclass != (int) alt))
  	    {
  	      static const char *const reg_class_names[] = REG_CLASS_NAMES;
! 	      fprintf(dump, "  Register %i", i);
  	      if (alt == ALL_REGS || best == ALL_REGS)
  		fprintf (dump, " pref %s\n", reg_class_names[(int) best]);
  	      else if (alt == NO_REGS)
--- 1187,1193 ----
  		  || reg_pref[i].altclass != (int) alt))
  	    {
  	      static const char *const reg_class_names[] = REG_CLASS_NAMES;
! 	      fprintf (dump, "  Register %i", i);
  	      if (alt == ALL_REGS || best == ALL_REGS)
  		fprintf (dump, " pref %s\n", reg_class_names[(int) best]);
  	      else if (alt == NO_REGS)




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]