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/23971] Compilation takes a long time with -O2 option


------- Additional Comments From falk at debian dot org  2005-09-19 21:18 -------
Confirmed. Test case:

void rgb_ycc_start(long *rgb_ycc_tab) {
    long i;
    for (i = 0; i <= 255; i++)
	rgb_ycc_tab[i] = 19595 * i;
}

These 4 lines take 27 seconds to compile, nearly all of which is spent
in synth_mult. Problem only occurs with -mcpu=ev4.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1


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


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