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/27440] [4.0/4.1/4.2 regression] code quality regression due to ivopts



------- Comment #4 from bangerth at dealii dot org  2006-09-13 03:32 -------
With today's 4.1.x snapshot and on x86_64, I get this at -O2:
----------------
.L4:
        mov     %edx, %eax
        incl    %edx
        cmpl    %edx, %ecx
        movl    %esi, (%rdi,%rax,4)
        jne     .L4
----------------
and this at -O2 -fno-ivopts
----------------
.L4:
        mov     %edx, %eax
        incl    %edx
        cmpl    %ecx, %edx
        movl    %esi, (%rdi,%rax,4)
        jb      .L4
----------------

That means we get the same bad code there in both cases :-(

W.


-- 

bangerth at dealii dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bangerth at dealii dot org


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


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