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/27891] [4.0/4.1 regression] ICE in tree_split_edge, at tree-cfg.c:3107



------- Comment #2 from falk at debian dot org  2006-06-04 12:51 -------
Here is a cleaned-up testcase:

int firstkey();
void DBM_error(int);

void domisc() {
    int i = 0;
    try {
        try {
            firstkey();
            while (1) {
                i++;
                firstkey();
            }
        } catch (int) {
            ;
        }
        DBM_error(i);
    } catch (int) {
        ;
    }
}

I have no idea why this would happen only on Alpha, it seems unlikely it's
actually a target bug...


-- 

falk at debian dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
      Known to fail|                            |4.0.3 4.1.0
      Known to work|                            |3.4.6 4.2.0


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


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