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]
Other format: [Raw text]

[Bug fortran/32633] bogus error



------- Comment #1 from dfranke at gcc dot gnu dot org  2007-07-05 14:56 -------
Haven't updated yet, but ...

symbol.c(check_conflict):493:
  [...]
  switch (attr->flavor)
    case FL_PARAMETER:
      conf2 (save);
  [...]

with
  #define conf2(a) if (attr->a) { a2 = a; goto conflict; }

should probably be 
  if (attr->flavor == FL_PARAMETER && attr->save == SAVE_EXPLICIT)

instead.


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-07-05 14:57:01
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32633


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