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 target/23435] [4.1 Regression] Unrecognizable insn (in extract_insn, at recog.c)


------- 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


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