------- 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

Reply via email to