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 tree-optimization/19639] Funny (horrible) code for empty destructor


------- Additional Comments From rguenth at tat dot physik dot uni-tuebingen dot de  2005-01-26 14:10 -------
We can also not fold &i[0] == &i[1] to false in

int foo(void)
{
        int i[2];
        if (&i[0] == &i[1])
                return 1;
        return 0;
}

or i+0 == i+1 which is transformed to &i[0] == &i[1].

-- 


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


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