This is the mail archive of the gcc-bugs@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]

Re: c/3917 Ooops!


Hi

Oops! I've just sent a buggy patch. :(

This is the valid

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=3917&database=gcc

-- 
Guillermo Ballester Valor
gbv@ctv.es
Granada (Spain)
*** ia64.c	Tue Aug  7 20:41:37 2001
--- ../gcc/gcc/gcc/config/ia64/ia64.c	Mon Aug  6 19:17:28 2001
***************
*** 5053,5059 ****
        enum attr_type t = (t0 == TYPE_L ? TYPE_F
  			  : t0 == TYPE_X ? TYPE_I
  			  : t0);
!       int max = (t == TYPE_B ? 3 : 2);
        if (type_count[t] == max)
  	return i;
        type_count[t]++;
--- 5053,5059 ----
        enum attr_type t = (t0 == TYPE_L ? TYPE_F
  			  : t0 == TYPE_X ? TYPE_I
  			  : t0);
!       int max = (t == TYPE_B ? 3 : t == TYPE_F ? 1 : 2);
        if (type_count[t] == max)
  	return i;
        type_count[t]++;

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