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 middle-end/44824] [4.6 regression] internal compiler error: verify_stmts failed



------- Comment #14 from jojelino at gmail dot com  2010-07-12 00:50 -------
then we get more reduced testcase

typedef struct sfoo{
        int ob_refcnt;
} foo;
typedef struct sbar{
        int ob_refcnt;
} bar;
extern __attribute__((dllimport)) bar bar1;
foo* stub1(){
return (                                \
                \
        ((foo*)(((foo *) &bar1)))->ob_refcnt++), ((foo *) &bar1);
}
int main()
{
        foo* a=stub1();
        return a;
}


-- 


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


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