[Bug target/27440] [4.0/4.1/4.2 regression] code quality regression due to ivopts
bangerth at dealii dot org
gcc-bugzilla@gcc.gnu.org
Wed Sep 13 03:32:00 GMT 2006
------- 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
More information about the Gcc-bugs
mailing list