------- Additional Comments From pinskia at gcc dot gnu dot org  2005-08-19 
05:11 -------
Confirmed, reduced testcase:
struct statfs {
  int f_bsize;
};
struct super_block {
  unsigned long s_blocksize;
};
struct nfs_fsinfo {
  unsigned long long bsize;
};
int statfs (struct nfs_fsinfo *);
int nfs_statfs(struct super_block *sb, struct statfs *buf)
{
  unsigned char blockbits;
  struct nfs_fsinfo res;
  statfs(&res);
  if (res.bsize == 0)
    res.bsize = sb->s_blocksize;
  buf->f_bsize = nfs_block_bits(res.bsize);
}


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
 GCC target triplet|m68k-elf                    |m68k-*
   Last reconfirmed|0000-00-00 00:00:00         |2005-08-19 05:11:08
               date|                            |


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

Reply via email to