split lui_movf pattern on mips?

2010-04-30 Thread Amker.Cheng
HI: There is comment on lui_movf in mips.md like following, ;; because we don't split it. FIXME: we should split instead. I can split it into a move and a condmove(movesi_on_cc) insns , like (define_split [(set (match_operand:CC 0 d_operand ) (match_operand:CC 1 fcc_reload_operand

Re: GCC-4.5.0 comparison with previous releases and LLVM-2.7 on SPEC2000 for x86/x86_64

2010-04-30 Thread Jan Hubicka
In theory, LIPO should not generate better results than LTO+FDO. What makes LIPO attractive is that it allows distributed build from the beginning. Its integration with large distributed build system is also easy. Another point is that LIPO can be decoupled from FDO as well. The integration

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Richard Guenther
On Thu, Apr 29, 2010 at 7:28 PM, Massimo Nazaria ma...@rocketmail.com wrote: Hi everybody! I am working on a gcc-pass which processes every statement using this code:  for (node = cgraph_nodes; node; node = node-next)    {      if (node-analyzed cgraph_is_master_clone (node))        {    

Re: Accepted applications for Google Summer of Code 2010

2010-04-30 Thread Aina Niemetz
Ian, thanks a lot for your feedback. I'm aware of the fact that this might be quite a challenge, I hope that my efforts won't be futile, though. Would it be a good time to get the copyright assignment stuff done now? Or is this too early, yet? Aina On 04/28/2010 03:21 PM, Ian Lance Taylor

Re: Accepted applications for Google Summer of Code 2010

2010-04-30 Thread Diego Novillo
On Fri, Apr 30, 2010 at 07:36, Aina Niemetz aina.niem...@gmail.com wrote: Would it be a good time to get the copyright assignment stuff done now? Or is this too early, yet? It's never too early to get the copyright assignment going.  To get the process started, follow the instructions on this

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Massimo Nazaria
You have to schedule your IPA pass at a point where the whole program is in SSA form, which is during the regular IPA passes at earlierst. Richard. It does not work :( I put my pass after all the ipa-passes and right before the optimization-passes. My problem occurs when I try to

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Richard Guenther
On Fri, Apr 30, 2010 at 1:42 PM, Massimo Nazaria ma...@rocketmail.com wrote: You have to schedule your IPA pass at a point where the whole program is in SSA form, which is during the regular IPA passes at earlierst. Richard. It does not work :( I put my pass after all the ipa-passes and

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Steven Bosscher
On Fri, Apr 30, 2010 at 1:42 PM, Massimo Nazaria ma...@rocketmail.com wrote: You have to schedule your IPA pass at a point where the whole program is in SSA form, which is during the regular IPA passes at earlierst. Richard. It does not work :( I put my pass after all the ipa-passes and

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Massimo Nazaria
You'll have to post your work so people can see. Now the best the experts here can do is guess what you're holding behind your back :-) Ciao! Steven I completely agree with you. This is my pass: static unsigned int execute_mypass (void) { basic_block bb; gimple stmt, def_stmt;

Re: Please update GNU GCC mirror list

2010-04-30 Thread Gerald Pfeifer
On Sat, 2 Jan 2010, Gerald Pfeifer wrote: That said, mirrors.laffeycomputer.com may indeed not be active anymore. Let me include mirrormas...@laffey.biz, the documented contact for that mirror. mirrormas...@laffey.biz, would you mind letting us know about the status of your GCC mirror

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Steven Bosscher
On Fri, Apr 30, 2010 at 3:35 PM, Massimo Nazaria ma...@rocketmail.com wrote: You'll have to post your work so people can see. Now the best the experts here can do is guess what you're holding behind your back :-) Ciao! Steven I completely agree with you. This is my pass: The place where

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Massimo Nazaria
The place where you insert the patch is as important as the implementation of your patch. What do your changes to passes.c look like? Here is the passes.c: NEXT_PASS (pass_early_warn_uninitialized); NEXT_PASS (pass_all_early_optimizations); NEXT_PASS (pass_mypass); // My

Re: ARM Neon Tests Failing on non-Neon Target

2010-04-30 Thread Joel Sherrill
On 04/29/2010 06:06 PM, Joseph S. Myers wrote: On Thu, 29 Apr 2010, Joel Sherrill wrote: Hi, I am looking at the arm-rtems test results for the trunk and noticing that most failures appear to be for neon tests. [j...@rtbf64a gcc]$ grep ^FAIL gcc.log.sent | wc -l 2203 [j...@rtbf64a gcc]$

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Diego Novillo
On 4/30/10 09:35 , Massimo Nazaria wrote: fprintf (dump_file, gimple_code: %d\n, gimple_code (def_stmt)); // Here I get segmentation fault... For default SSA names, the defining statement will be NULL. A default SSA name will be created when a symbol is

memcpy(p,p,len)

2010-04-30 Thread Joakim Tjernlund
Is memcpy supposed to work when the src and dest are the same: memcpy(p, p, 100); Jocke

Re: memcpy(p,p,len)

2010-04-30 Thread Jan-Benedict Glaw
On Fri, 2010-04-30 16:08:15 +0200, Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Is memcpy supposed to work when the src and dest are the same: memcpy(p, p, 100); It may work, but you cannot rely on it. Use memmove() alternatively. MfG, JBG -- Jan-Benedict Glaw

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Richard Guenther
On Fri, Apr 30, 2010 at 3:35 PM, Massimo Nazaria ma...@rocketmail.com wrote: You'll have to post your work so people can see. Now the best the experts here can do is guess what you're holding behind your back :-) Ciao! Steven I completely agree with you. This is my pass: static

Re: memcpy(p,p,len)

2010-04-30 Thread Joakim Tjernlund
Jan-Benedict Glaw jbg...@lug-owl.de wrote on 2010/04/30 16:10:42: On Fri, 2010-04-30 16:08:15 +0200, Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Is memcpy supposed to work when the src and dest are the same: memcpy(p, p, 100); It may work, but you cannot rely on it. Use

Re: [Mpc-discuss] gcc dependency on unsigned mpc releases

2010-04-30 Thread Andreas Enge
Hi, On Wed, Apr 28, 2010 at 11:54:45AM -0400, Brian Gough wrote: I am just following up on my earlier email to mpc-discuss to check if some signatures can be made available for the mpc tarballs. Currently it's not possible to install the latest gcc without the risk of using unsigned code.

Re: memcpy(p,p,len)

2010-04-30 Thread Jan-Benedict Glaw
On Fri, 2010-04-30 16:14:36 +0200, Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Jan-Benedict Glaw jbg...@lug-owl.de wrote on 2010/04/30 16:10:42: On Fri, 2010-04-30 16:08:15 +0200, Joakim Tjernlund joakim.tjernl...@transmode.se wrote: Is memcpy supposed to work when the src and

Re: memcpy(p,p,len)

2010-04-30 Thread Mark Mielke
Just a quick comment than Jan-Benedict's opinion is widely shared by the specification and by the Linux glibc manpage: DESCRIPTION The memcpy() function copies n bytes from memory area src to memory area dest. The memory areas should not overlap. Use memmove(3) if the

RE: memcpy(p,p,len)

2010-04-30 Thread Paul Koning
That would be a bug. If h1 and h2 were marked __restrict__ then using memcpy to make the assignment is valid, but without that marking h1 may be == h2 so memmove is required. paul -Original Message- From: Joakim Tjernlund [mailto:joakim.tjernl...@transmode.se] Sent: Friday,

Re: ARM Neon Tests Failing on non-Neon Target

2010-04-30 Thread Joseph S. Myers
On Fri, 30 Apr 2010, Joel Sherrill wrote: This is fairly typical. FAIL: gcc.target/arm/neon/vzips8.c (test for excess errors) Excess errors: vzips8.s:13: Error: selected processor does not support `fldd d17,[fp,#-40]' [...] Would it be better for the arm_neon_ok check to actually put in

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Michael Matz
Hi, On Fri, 30 Apr 2010, Diego Novillo wrote: On 4/30/10 09:35 , Massimo Nazaria wrote: fprintf (dump_file, gimple_code: %d\n, gimple_code (def_stmt)); // Here I get segmentation fault... For default SSA names, the defining statement will be NULL.

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Diego Novillo
On Fri, Apr 30, 2010 at 10:48, Michael Matz m...@suse.de wrote: For default SSA names, the defining statement will be NULL. Nope, it will be non-NULL but gimple_nop_p(). Bah! yes, of course. Sorry about that. Diego.

Re: memcpy(p,p,len)

2010-04-30 Thread Joe Buck
On Fri, Apr 30, 2010 at 07:30:33AM -0700, Mark Mielke wrote: Just a quick comment than Jan-Benedict's opinion is widely shared by the specification and by the Linux glibc manpage: DESCRIPTION The memcpy() function copies n bytes from memory area src to memory area

Re: ARM Neon Tests Failing on non-Neon Target

2010-04-30 Thread Joel Sherrill
On 04/30/2010 09:37 AM, Joseph S. Myers wrote: On Fri, 30 Apr 2010, Joel Sherrill wrote: This is fairly typical. FAIL: gcc.target/arm/neon/vzips8.c (test for excess errors) Excess errors: vzips8.s:13: Error: selected processor does not support `fldd d17,[fp,#-40]' [...] Would

Re: ARM Neon Tests Failing on non-Neon Target

2010-04-30 Thread Joseph S. Myers
On Fri, 30 Apr 2010, Joel Sherrill wrote: For EABI, this is done with .cpu, .arch and .fpu directives; for non-EABI you may need to write specs to pass command-line options to the assembler. Creating an arm-rtemseabi or similar target and obsoleting the old-ABI version is what I'd

Re: memcpy(p,p,len)

2010-04-30 Thread Richard Guenther
On Fri, Apr 30, 2010 at 5:05 PM, Joe Buck joe.b...@synopsys.com wrote: On Fri, Apr 30, 2010 at 07:30:33AM -0700, Mark Mielke wrote: Just a quick comment than Jan-Benedict's opinion is widely shared by the specification and by the Linux glibc manpage: DESCRIPTION         The  memcpy()  

Re: ARM Neon Tests Failing on non-Neon Target

2010-04-30 Thread Richard Earnshaw
On Fri, 2010-04-30 at 15:26 +, Joseph S. Myers wrote: On Fri, 30 Apr 2010, Joel Sherrill wrote: For EABI, this is done with .cpu, .arch and .fpu directives; for non-EABI you may need to write specs to pass command-line options to the assembler. Creating an arm-rtemseabi or

Type-generic macros with C

2010-04-30 Thread Jörg Leis
Hi, would it be possible for GCC to ignore the expression that is not chosen by __builtin_choose_expr? Furthermore, it seems like this built-in function inhibits GCC's ability to inline functions. I get an undefined reference when I compile without -O2; the function is defined in C99-mode as

Re: Type-generic macros with C

2010-04-30 Thread Ian Lance Taylor
Jörg Leis jo...@joergleis.com writes: would it be possible for GCC to ignore the expression that is not chosen by __builtin_choose_expr? Furthermore, it seems like this built-in function inhibits GCC's ability to inline functions. I get an undefined reference when I compile without -O2; the

Re: GCC-4.5.0 comparison with previous releases and LLVM-2.7 on SPEC2000 for x86/x86_64

2010-04-30 Thread Xinliang David Li
On Fri, Apr 30, 2010 at 1:37 AM, Jan Hubicka hubi...@ucw.cz wrote: In theory, LIPO should not generate better results than LTO+FDO. What makes LIPO attractive is that it allows distributed build from the beginning. Its integration with large distributed build system is also easy.  Another

Re: GCC-4.5.0 comparison with previous releases and LLVM-2.7 on SPEC2000 for x86/x86_64

2010-04-30 Thread Jan Hubicka
Interesting.  My plan for profiling with LTO is to ultimately make it linktime transform.  This will be more difficult with WHOPR (i.e. instrumenting need function bodies that are not available at WPA time), but I believe it is solvable: just assign uids to the edges and do

GCC 4.4.4 Status Report (2010-04-30)

2010-04-30 Thread Jakub Jelinek
Status == GCC 4.4.4 release tarballs have been uploaded to gcc.gnu.org and most of them already to ftp.gnu.org too (there have been issues with most of the tarballs being rejected due to make dist checking, the main tarballs have been moved there manually already, but some auxiliary tarballs

Re: Problem with SSA form usign cgraph_nodes and push_cfun

2010-04-30 Thread Massimo Nazaria
Thank you everyone!!! I found out a solution... I had to add a line to my pass (the 2nd if): for (node = cgraph_nodes; node; node = node-next) { if (node-analyzed cgraph_is_master_clone (node)) { if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (node-decl))) return 0; // I added this line In

Re: GCC-4.5.0 comparison with previous releases and LLVM-2.7 on SPEC2000 for x86/x86_64

2010-04-30 Thread Xinliang David Li
On Fri, Apr 30, 2010 at 11:12 AM, Jan Hubicka hubi...@ucw.cz wrote: Interesting.  My plan for profiling with LTO is to ultimately make it linktime transform.  This will be more difficult with WHOPR (i.e. instrumenting need function bodies that are not available at WPA time), but I

Possible missing case for -Wcast-align

2010-04-30 Thread Pedro Pedruzzi
Hi, gcc (for a STRICT_ALIGNMENT target and with -Wcast-align) do not warn about the increasing of alignment requirement on the pointer assignments present on the following C code. struct { short var; } __attribute__((packed)) str; void fun(void) { short *ptr; ptr = (short *)

Re: memcpy(p,p,len)

2010-04-30 Thread Joe Buck
On Fri, Apr 30, 2010 at 08:29:19AM -0700, Richard Guenther wrote: On Fri, Apr 30, 2010 at 5:05 PM, Joe Buck joe.b...@synopsys.com wrote: On Fri, Apr 30, 2010 at 07:30:33AM -0700, Mark Mielke wrote: Just a quick comment than Jan-Benedict's opinion is widely shared by the specification and by

gcc.3.4.6 vs. gcc-4.3.2 re: pseudo instructions bus error

2010-04-30 Thread SHANE MILLER, BLOOMBERG/ 731 LEXIN
Hi, I compile .c files using both gcc.3.4.6 and gcc-4.3.2 chaining to Sun's assembler Sun Compiler Common 10 Patch 09/04/2007 in both cases: gcc -O3 -D_SOLARIS -D_SPARC -Wall -Wa,-xarch=v8plus -fexceptions -c ... I run on a SunOS 5.10 Generic_137111-08 sun4v sparc SUNW,T5240 box with

[Bug c++/43943] warning: no return statement in function returning non-void should be an error

2010-04-30 Thread david at rothlis dot net
--- Comment #3 from david at rothlis dot net 2010-04-30 06:05 --- a function with a missing return is valid I just can't reconcile that with the following line from the C++ standard: It is now invalid to return (explicitly or implicitly) from a function which is declared to return a

[Bug c++/43779] Parts of message not available for translation

2010-04-30 Thread pzhao at gcc dot gnu dot org
--- Comment #2 from pzhao at gcc dot gnu dot org 2010-04-30 06:16 --- Subject: Bug 43779 Author: pzhao Date: Fri Apr 30 06:16:26 2010 New Revision: 158919 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=158919 Log: 2010-04-30 Shujing Zhao pearly.z...@oracle.com PR

[Bug fortran/41829] [OOP] Runtime error with dynamic dispatching

2010-04-30 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2010-04-30 06:51 --- Fixed on trunk. Thanks for the help, Salvatore - I hope that it will continue. Paul and Janus -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/43810] [4.5 Regression] linking results in undefined references to _savegpr_* _restgpr_*_x

2010-04-30 Thread patrick at motec dot com dot au
--- Comment #9 from patrick at motec dot com dot au 2010-04-30 06:57 --- Khem, Your libgcc.a looks fine. As far as I know, libgcc.a is supposed to be the last library listed when linking so the behaviour you are seeing is normal. My problem is that libgcc.a does not contain

[Bug inline-asm/37195] different variables get the same overlapping memory address in inline assembly

2010-04-30 Thread jdemeyer at cage dot ugent dot be
--- Comment #8 from jdemeyer at cage dot ugent dot be 2010-04-30 07:24 --- On first sight, it looks fixed in gcc 4.6.0 SVN. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37195

[Bug tree-optimization/43879] -fipa-pta causes various miscompilations

2010-04-30 Thread rguenth at gcc dot gnu dot org
--- Comment #11 from rguenth at gcc dot gnu dot org 2010-04-30 08:23 --- Subject: Bug 43879 Author: rguenth Date: Fri Apr 30 08:22:15 2010 New Revision: 158924 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=158924 Log: 2010-04-30 Richard Guenther rguent...@suse.de PR

[Bug middle-end/43853] [4.6 Regression] FAIL: gcc.dg/lto/20090126-1 c_lto_20090126-1_0.o-c_lto_20090126-1_0.o

2010-04-30 Thread hubicka at ucw dot cz
--- Comment #2 from hubicka at ucw dot cz 2010-04-30 08:45 --- Subject: Re: [4.6 Regression] FAIL: gcc.dg/lto/20090126-1 c_lto_20090126-1_0.o-c_lto_20090126-1_0.o Hi, the problem here is that the testcase combine -O0 module into -O3 module. This results in optimization

[Bug libgomp/43706] scheduling two threads on one core leads to starvation

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43706

[Bug debug/39372] [4.3 Regression] Missing DW_AT_location for constructor static variable

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39372

[Bug c++/22488] [4.3/4.4/4.5/4.6 Regression] push_fields_onto_fieldstack calculates offset incorrectly

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22488

[Bug libstdc++/38678] [DR XXX] istream::read() calls streambuf::sgetn()

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38678

[Bug tree-optimization/41454] [4.4 Regression] DOM miscompiles gcc.c-torture/execute/990513-1.c at -O2 -fno-tree-vrp

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41454

[Bug middle-end/41043] [4.4 Regression] virtual memory exhausted: Cannot allocate memory

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41043

[Bug middle-end/36143] [4.4 Regression]: FAIL: g++.dg/tree-ssa/pr19637.C

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36143

[Bug tree-optimization/43845] [4.4 Regression] Segfault when using __attribute__((const)), versions 4.4.3 and 4.6

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43845

[Bug debug/37022] internal compiler error: in compute_barrier_args_size

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37022

[Bug rtl-optimization/37272] [4.4/4.5/4.6 Regression] IRA has caused ppc64-double-1.c to fail

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37272

[Bug middle-end/36201] [4.4 Regression] NVR in the front-end causes missed optimization later on (retval thought to alias arguments)

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36201

[Bug rtl-optimization/37273] [4.4/4.5/4.6 Regression] IRA does not re-materializes addresses (loads from the TOC)

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37273

[Bug rtl-optimization/37534] [4.4/4.5/4.6 Regression] IRA causes 17% degradation in 187.facerec benchmark

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37534

[Bug target/38134] [4.4/4.5/4.6 Regression] speed regression with many loop invariants

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38134

[Bug middle-end/38671] [4.3/4.4/4.5/4.6 Regression] selecting one IV instead of three

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38671

[Bug target/38306] [4.4/4.5/4.6 Regression] 15% slowdown w.r.t. 4.3 of computational kernel on some architectures

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38306

[Bug tree-optimization/39390] [4.4 Regression] Bogus aliasing warning with std::set

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39390

[Bug tree-optimization/38747] [4.4 Regression] Wrong code due to VIEW_CONVERT_EXPR

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38747

[Bug tree-optimization/39612] [4.3/4.4/4.5/4.6 Regression] LIM inserts loads from uninitialized local memory

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39612

[Bug middle-end/39514] [4.4/4.5/4.6 Regression] unreported change to packed bitfields

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39514

[Bug tree-optimization/39355] [4.4/4.5/4.6 Regression] Revision 144529: ICE due to missing or incorrectly relocated DECL_VALUE_EXPR in PCH header for PARM_DECL

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39355

[Bug middle-end/40106] [4.4 Regression] Weird interaction between optimize_insn_for_speed_p and -funsafe-math-optimizations

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40106

[Bug middle-end/38878] [4.4/4.5/4.6 Regression] gcc.dg/tree-ssa/foldaddr-1.c XFAILed

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38878

[Bug target/41176] [4.4/4.5/4.6 Regression] ICE in reload_cse_simplify_operands at postreload.c:396

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41176

[Bug libgcj/39747] [4.4/4.5/4.6 Regression] Installation documentation should suggest building libgmp as PIC for building with libjava

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39747

[Bug rtl-optimization/41619] [4.4/4.5/4.6 regression] ICE in insert_save (caller-save.c) for SPEC CPU2000's 252.eon

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41619

[Bug tree-optimization/42108] [4.4/4.5/4.6 Regression] 50% performance regression

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42108

[Bug fortran/42169] [4.4/4.5/4.6 Regression] gfortran.dg/pr41928.f90:47: internal compiler error: in store_can_be_removed_p, at ira-emit.c:371

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42169

[Bug rtl-optimization/42502] [4.4/4.5/4.6 Regression] Bad register allocation in a very simple code

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42502

[Bug tree-optimization/42438] [4.4 Regression] Fix for PR38819 is too conservative

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42438

[Bug middle-end/42577] [4.4 Regression] array bounds false positive with -O3, goes away with -O2

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42577

[Bug target/42536] [4.4/4.5/4.6 regression] ICE in spill_failure, at reload1.c:2141

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42536

[Bug middle-end/42973] [4.4 regression] IRA apparently systematically making reload too busy on 2 address instructions with 3 operands

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42973

[Bug debug/43370] [4.4/4.5/4.6 Regression] ICE gen_type_die_with_usage, at dwarf2out.c:14745

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43370

[Bug middle-end/42505] [4.4/4.5/4.6 Regression] loop canonicalization causes a lot of unnecessary temporary variables

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42505

[Bug rtl-optimization/42621] [4.4 Regression] Computed gotos on AMD 800% slower

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42621

[Bug target/43668] [4.6 Regression] -fschedule-insns causes FAIL: gcc.target/i386/vararg-1.c execution test

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43668

[Bug target/43671] [4.4/4.5/4.6 Regression] -fsched2-use-superblocks -m32 produces wrong code with vectorization

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43671

[Bug target/43700] [4.4/4.5/4.6 Regression] global register variables defect

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43700

[Bug c++/33979] support for char16_t, char32_t

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33979

[Bug target/38384] shared link/execute fails for cross gcc from linux to target hppa64-hp-hpux11.00

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38384

[Bug fortran/34199] segfault for TRANSFER integer to TYPE(C_PTR)

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34199

[Bug c++/39219] attribute doesn't work with enums properly

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39219

[Bug libstdc++/40497] [C++0x] troubles with std::next / std::prev declarations

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40497

[Bug other/39979] [4.4/4.5/4.6 Regression] possible wrong code at all -0x levels.

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39979

[Bug middle-end/41738] [4.3/4.4 Regression] optabs expands rotate using wrong mode

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41738

[Bug target/41156] [4.4/4.5/4.6 Regression] zlib segfault in inflate_table() compiled w/ -O -msse2 ftree-vectorize

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41156

[Bug ada/42073] [4.4 regression] Infinite loop when parsing a project file, alpha only

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42073

[Bug ada/41321] Ada runtime not initializing fpu (finit)

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41321

[Bug tree-optimization/42494] [4.4 Regression] Missed dead-code-elimination

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42494

[Bug middle-end/42509] [4.4 Regression] nonoverlapping_memrefs_p misinterprets NULL MEM_OFFSET as const0_rtx

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42509

[Bug testsuite/42856] [4.4 Regression] FAIL: gcc.dg/torture/pr41555.c -O0 (test for excess errors)

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42856

[Bug middle-end/43323] [4.4 Regression] Wrong code with bitfields and type casting.

2010-04-30 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.4.4 |4.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43323

  1   2   3   >