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/26826] ICE in reg_or_subregno, at jump.c:2011



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-03-23 14:33 -------
Reduced testcase:
typedef struct {
   unsigned short  FacilitySelector;
} _cmsg;
typedef struct _AppPlci {
    int *appl;
} AppPlci_t;
void AppPlci_hold_reply(AppPlci_t *aplci, unsigned short SuppServiceReason)
{
    _cmsg *cmsg;
    unsigned char tmp[10], *p;
    if (aplci->appl)
    {
        if (!(cmsg = _kd_cmsg_alloc()))
            return;
        p = &tmp[1];
        p += capiEncodeFacIndSuspend(p);
        tmp[0] = p - &tmp[1];
        cmsg->FacilitySelector = 0x0003;
    }
    if (SuppServiceReason == 0)
        mISDN_FsmEvent(&aplci->appl);
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
      Known to fail|                            |4.1.0 4.2.0
      Known to work|                            |4.0.3
   Last reconfirmed|0000-00-00 00:00:00         |2006-03-23 14:33:26
               date|                            |
   Target Milestone|---                         |4.1.1


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


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