[Bug tree-optimization/51990] New: ICE in copy_reference_ops_from_ref

2012-01-24 Thread vries at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51990 Bug #: 51990 Summary: ICE in copy_reference_ops_from_ref Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug fortran/51966] [4.6/4.7 Regression] ICE in gfc_conv_array_constructor_expr

2012-01-24 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51966 --- Comment #6 from Tobias Burnus 2012-01-25 06:59:25 UTC --- Author: burnus Date: Wed Jan 25 06:59:21 2012 New Revision: 183510 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183510 Log: 2012-01-24 Tobias Burnus PR fortran/51

[Bug c++/51989] std::deque::iterator recognised as container

2012-01-24 Thread leonid at volnitsky dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51989 --- Comment #3 from Leonid Volnitsky 2012-01-25 05:04:56 UTC --- Created attachment 26453 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26453 gcc error

[Bug c++/51989] std::deque::iterator recognised as container

2012-01-24 Thread leonid at volnitsky dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51989 --- Comment #2 from Leonid Volnitsky 2012-01-25 05:04:00 UTC --- Created attachment 26452 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26452 deque-bug.s

[Bug c++/51989] std::deque::iterator recognised as container

2012-01-24 Thread leonid at volnitsky dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51989 --- Comment #1 from Leonid Volnitsky 2012-01-25 05:03:14 UTC --- Created attachment 26451 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26451 deque-bug.ii

[Bug c++/51989] New: std::deque::iterator recognised as container

2012-01-24 Thread leonid at volnitsky dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51989 Bug #: 51989 Summary: std::deque::iterator recognised as container Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Prior

[Bug c++/51917] [4.7 regression] g++.old-deja/g++.abi/vmihint.C FAILs

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51917 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug c++/51917] [4.7 regression] g++.old-deja/g++.abi/vmihint.C FAILs

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51917 --- Comment #3 from Jason Merrill 2012-01-25 04:39:59 UTC --- Author: jason Date: Wed Jan 25 04:39:52 2012 New Revision: 183509 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183509 Log: PR c++/51917 * decl.c (xref_basetypes): Che

[Bug c++/51917] [4.7 regression] g++.old-deja/g++.abi/vmihint.C FAILs

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51917 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unassigned at

[Bug c++/51370] [4.6/4.7 Regression] ICE with invalid template parameter

2012-01-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51370 Paolo Carlini changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unassigned at

[Bug c++/51370] [4.6/4.7 Regression] ICE with invalid template parameter

2012-01-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51370 --- Comment #2 from Paolo Carlini 2012-01-25 02:05:19 UTC --- In mainline the second snippet doesn't ICE anymore.

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 --- Comment #6 from Andrew Pinski 2012-01-25 00:58:45 UTC --- I have a patch which fixes the testcases in comment #3 and comment #5. The testcase in comment #0 will be fixed with the patch in http://gcc.gnu.org/ml/gcc-patches/2012-01/msg01195.ht

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 --- Comment #5 from Andrew Pinski 2012-01-25 00:45:37 UTC --- Here is another testcase which also fails: int g(int,int); int f(int t, int c) { int d = 0; int e = 0; if (t) { d = c+1; e = t; } else d = 0, e = 0; retur

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 --- Comment #4 from Andrew Pinski 2012-01-25 00:26:41 UTC --- The first testcase is still valid but is not handled currently without some changes dealing with how PHI-OPT works which I am fixing right now.

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 --- Comment #3 from Andrew Pinski 2012-01-25 00:24:41 UTC --- Here is a better testcase: int g(int,int); int f(int t, int c) { int d = 0; int e = 0; if (t) { d = 1; e = t; } else d = 0, e = 0; return g(d,e); } --- C

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 --- Comment #2 from Andrew Pinski 2012-01-25 00:04:01 UTC --- Note this is like http://gcc.gnu.org/ml/gcc-patches/2012-01/msg01195.html but different as we should do this even if the arguments for the other PHIs are non equal.

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 Andrew Pinski changed: What|Removed |Added Status|NEW |ASSIGNED

[Bug tree-optimization/51988] value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug tree-optimization/51988] New: value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51988 Bug #: 51988 Summary: value_replacement in PHIOPT should handle even the cases where there are other PHIs even with non equal value Classification: Unclassified Product:

[Bug bootstrap/51985] [4.7 Regression] Bootstrap failure at revision 183497 on x86_64-apple-darwin10

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51985 --- Comment #2 from Dominique d'Humieres 2012-01-24 23:16:45 UTC --- Looking at the log, I see copying selected object files to avoid basename conflicts... <--- :-( copying selected object files to avoid basename conflicts... libtool: link:

[Bug libstdc++/51981] Missing uninitialized_move() implementation?

2012-01-24 Thread marc.glisse at normalesup dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51981 Marc Glisse changed: What|Removed |Added CC||marc.glisse at normalesup

[Bug target/43311] missed 'movw' optimization.

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43311 --- Comment #2 from Andrew Pinski 2012-01-24 22:52:54 UTC --- This is dup of the merge loads from two adjacent memory location into one load bug. Which I don't remember the number of the bug right now.

[Bug bootstrap/51985] [4.7 Regression] Bootstrap failure at revision 183497 on x86_64-apple-darwin10

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51985 Dominique d'Humieres changed: What|Removed |Added Target||x86_64-apple-darwin10

[Bug tree-optimization/51987] [4.7 Regression] Predictive commoning wrong-code with non-volatile asm

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51987 --- Comment #1 from Jakub Jelinek 2012-01-24 22:40:11 UTC --- Created attachment 26449 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26449 gcc47-pr51987.patch Untested fix.

[Bug fortran/51970] [OOP] gimplification failed for polymorphic MOVE_ALLOC

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51970 --- Comment #4 from Dominique d'Humieres 2012-01-24 22:35:43 UTC --- The patch attached to comment #4 + the "hack" let the test compile without error (although I don't know if it is valid). I have noticed the following changes: For 51948, before

[Bug tree-optimization/51987] [4.7 Regression] Predictive commoning wrong-code with non-volatile asm

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51987 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug tree-optimization/51987] New: [4.7 Regression] Predictive commoning wrong-code with non-volatile asm

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51987 Bug #: 51987 Summary: [4.7 Regression] Predictive commoning wrong-code with non-volatile asm Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIR

[Bug middle-end/51986] [4.7 regression] uninitialized variable warning regression prevents bootstrap

2012-01-24 Thread matt at use dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51986 --- Comment #1 from Matt Hargett 2012-01-24 22:31:05 UTC --- Created attachment 26448 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26448 pre-processed source of the file that triggers the regression

[Bug middle-end/51986] New: [4.7 regression] uninitialized variable warning regression prevents bootstrap

2012-01-24 Thread matt at use dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51986 Bug #: 51986 Summary: [4.7 regression] uninitialized variable warning regression prevents bootstrap Classification: Unclassified Product: gcc Version: 4.7.0 Status: U

[Bug bootstrap/51985] New: [4.7 Regression] Bootstrap failure at revision 183497 on x86_64-apple-darwin10

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51985 Bug #: 51985 Summary: [4.7 Regression] Bootstrap failure at revision 183497 on x86_64-apple-darwin10 Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug middle-end/51984] ICE: SIGSEGV with -O2 -fgraphite-identity

2012-01-24 Thread marbacz at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51984 --- Comment #1 from Marcin Baczynski 2012-01-24 22:00:18 UTC --- Created attachment 26447 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26447 Reduced test case.

[Bug middle-end/51984] New: ICE: SIGSEGV with -O2 -fgraphite-identity

2012-01-24 Thread marbacz at gmail dot com
root/bug.c:8:1: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See <http://gcc.gnu.org/bugs.html> for instructions. ~ # gcc -v Using built-in specs. COLLECT_GCC=/usr/x86_64-pc-linux-gnu/gcc-bin/4.7.0-svn-183

[Bug gcov-profile/51975] ICE in gcc in convert_move, at expr.c:326 with fprofile-use when source changes from fprofile-generate

2012-01-24 Thread asharif at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51975 asharif at gcc dot gnu.org changed: What|Removed |Added Attachment #26445|0 |1 is obsolete|

[Bug gcov-profile/51975] ICE in gcc in convert_move, at expr.c:326 with fprofile-use when source changes from fprofile-generate

2012-01-24 Thread asharif at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51975 asharif at gcc dot gnu.org changed: What|Removed |Added Attachment #26439|0 |1 is obsolete|

[Bug middle-end/39246] FAIL: gcc.dg/uninit-13.c

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39246 --- Comment #8 from Andrew Pinski 2012-01-24 19:48:16 UTC --- *** Bug 41895 has been marked as a duplicate of this bug. ***

[Bug middle-end/39246] FAIL: gcc.dg/uninit-13.c

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39246 Andrew Pinski changed: What|Removed |Added CC||Greta.Yorsh at arm dot com --- Comment #9

[Bug c/51983] Wrong line number in an uninitialized variable warning

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51983 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug middle-end/41895] _Complex return type changes line numbers in diagnostics

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41895 Andrew Pinski changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug c/51983] New: Wrong line number in an uninitialized variable warning

2012-01-24 Thread Greta.Yorsh at arm dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51983 Bug #: 51983 Summary: Wrong line number in an uninitialized variable warning Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51917] [4.7 regression] g++.old-deja/g++.abi/vmihint.C FAILs

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51917 Jason Merrill changed: What|Removed |Added CC||jason at gcc dot gnu.org --- Comment #2 f

[Bug libstdc++/51636] Thread-safeness of new and delete operators

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51636 --- Comment #2 from Andrew Pinski 2012-01-24 19:41:54 UTC --- >Guess: the new/new[] operators throwing std::bad_alloc have a MT-safeness problem. They should not as they are just wrappers around malloc.

[Bug c++/51973] [4.7 regression][C++11] Template parameter deduction fails for overloaded functions when template parameters have defaulted arguments

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51973 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug c++/51973] [4.7 regression][C++11] Template parameter deduction fails for overloaded functions when template parameters have defaulted arguments

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51973 --- Comment #4 from Jason Merrill 2012-01-24 19:07:29 UTC --- Author: jason Date: Tue Jan 24 19:07:24 2012 New Revision: 183487 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183487 Log: PR c++/51973 * tree.c (called_fns_equal): C

[Bug middle-end/51982] Shrink-wrapping opportunity

2012-01-24 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51982 Andrew Pinski changed: What|Removed |Added Depends on||10474 --- Comment #1 from Andrew Pinski

[Bug middle-end/51982] Shrink-wrapping opportunity

2012-01-24 Thread dje at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51982 David Edelsohn changed: What|Removed |Added Keywords||missed-optimization Status|U

[Bug middle-end/51982] New: Shrink-wrapping opportunity

2012-01-24 Thread dje at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51982 Bug #: 51982 Summary: Shrink-wrapping opportunity Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: enhancement Priority: P3

[Bug target/51968] gcc trunk (ARM) ICEs in final_scan_insn in final.c:2716, with "could not split insn" error msg

2012-01-24 Thread rth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51968 Richard Henderson changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug target/51968] gcc trunk (ARM) ICEs in final_scan_insn in final.c:2716, with "could not split insn" error msg

2012-01-24 Thread rth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51968 --- Comment #7 from Richard Henderson 2012-01-24 17:33:46 UTC --- Author: rth Date: Tue Jan 24 17:33:41 2012 New Revision: 183480 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183480 Log: PR target/51968 * config/arm/arm.c (neon_

[Bug c++/51928] ICE: SIGSEGV in lookup_fnfields_idx_nolazy (search.c:1384) with -fgnu-tm on invalid code

2012-01-24 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51928 Aldy Hernandez changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED CC|

[Bug c++/51928] ICE: SIGSEGV in lookup_fnfields_idx_nolazy (search.c:1384) with -fgnu-tm on invalid code

2012-01-24 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51928 --- Comment #1 from Aldy Hernandez 2012-01-24 16:47:43 UTC --- Author: aldyh Date: Tue Jan 24 16:47:24 2012 New Revision: 183478 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183478 Log: + PR c++/51928 + * class.c (set_method

[Bug libstdc++/51981] Missing uninitialized_move() implementation?

2012-01-24 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51981 --- Comment #1 from Jonathan Wakely 2012-01-24 16:46:12 UTC --- Because it's non-standard

[Bug libstdc++/51981] New: Missing uninitialized_move() implementation?

2012-01-24 Thread valyala at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51981 Bug #: 51981 Summary: Missing uninitialized_move() implementation? Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: enhancement

[Bug libstdc++/51798] [4.7 regression] libstdc++ atomicity performance regression due to __sync_fetch_and_add

2012-01-24 Thread amacleod at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51798 --- Comment #6 from Andrew Macleod 2012-01-24 16:02:03 UTC --- Others expressed concern about a change that could potentially affect all targets since its in libstdc++ code, especially considering this code is being deprecated. There are targets

[Bug libgcj/50895] Build failure in jni.cc

2012-01-24 Thread vanboxem.ruben at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50895 --- Comment #2 from Ruben Van Boxem 2012-01-24 15:29:24 UTC --- With GCC 4.7, I get a different failure (and jni.cc hasn't been reached yet I think), which is pthread-related (I configured with --enable-threads=posix): libtool: compile: /home/r

[Bug libstdc++/51798] [4.7 regression] libstdc++ atomicity performance regression due to __sync_fetch_and_add

2012-01-24 Thread dje at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51798 --- Comment #5 from David Edelsohn 2012-01-24 15:29:44 UTC --- Are you suggesting that the existing atomicity support in libstdc++ should be changed to use ACQ_REL semantics? libstdc++ uses one function to both acquire and release a lock. It ad

[Bug fortran/51977] [OOP] MOVE_ALLOC: Bogus "must have the same rank 0/1" for same-rank arrays

2012-01-24 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51977 Tobias Burnus changed: What|Removed |Added CC||burnus at gcc dot gnu.org --- Comment #1

[Bug fortran/51970] [OOP] gimplification failed for polymorphic MOVE_ALLOC

2012-01-24 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51970 --- Comment #3 from Tobias Burnus 2012-01-24 15:27:43 UTC --- Created attachment 26443 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26443 Draft patch for trans-intrinsic.c There are two issues: a) from_expr->rank *and* to_expr->rank are

[Bug target/51980] ARM - Neon code polluted by useless stores to the stack with vuzpq / vzipq / vtrnq

2012-01-24 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51980 Richard Guenther changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/51973] [4.7 regression][C++11] Template parameter deduction fails for overloaded functions when template parameters have defaulted arguments

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51973 Jason Merrill changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug target/51980] New: ARM - Neon code polluted by useless stores to the stack with vuzpq / vzipq / vtrnq

2012-01-24 Thread eric.batut at allegorithmic dot com
inux-androideabi-,' Thread model: posix gcc version 4.7.0 20120124 (experimental) (GCC) COLLECT_GCC_OPTIONS='-c' '-march=armv7-a' '-mcpu=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfp' '-flax-vector-conversions' '-mfpu=neon' '-O2&

[Bug bootstrap/49829] [4.7 Regression] --disable-static --enable-shared regression: cannot find -lstdc++

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49829 --- Comment #22 from Jakub Jelinek 2012-01-24 13:59:19 UTC --- On powerpc64-linux apparently a few symbols are gone since yesterday: _ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE@@GLIBCXX_3.4 OBJECT GLOBAL DEFAULT 16 _ZNSs4_Rep20_S_

[Bug driver/47249] [4.4/4.5/4.6 Regression] ICE in common_handle_option, at opts.c:1695 with unknown option passed to cc1

2012-01-24 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47249 Richard Guenther changed: What|Removed |Added Target Milestone|4.4.7 |4.7.0 --- Comment #7 from Richard Guen

[Bug c++/51812] [4.7 regression] Virtual public inheritance and thunks leads to "undefined reference" in header files.

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51812 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug c++/51812] [4.7 regression] Virtual public inheritance and thunks leads to "undefined reference" in header files.

2012-01-24 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51812 --- Comment #7 from Jason Merrill 2012-01-24 13:37:43 UTC --- Author: jason Date: Tue Jan 24 13:37:38 2012 New Revision: 183475 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183475 Log: PR c++/51812 * cgraphunit.c (cgraph_decide_

[Bug driver/47249] [4.4/4.5/4.6 Regression] ICE in common_handle_option, at opts.c:1695 with unknown option passed to cc1

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47249 Jakub Jelinek changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug driver/47249] [4.4/4.5/4.6/4.7 Regression] ICE in common_handle_option, at opts.c:1695 with unknown option passed to cc1

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47249 --- Comment #5 from Jakub Jelinek 2012-01-24 13:18:16 UTC --- Author: jakub Date: Tue Jan 24 13:18:08 2012 New Revision: 183474 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183474 Log: PR driver/47249 * common.opt (-pie, -shared

[Bug fortran/41823] gcc/fortran/trans-openmp.c: possible null pointer dereference

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41823 --- Comment #4 from Jakub Jelinek 2012-01-24 13:18:18 UTC --- It is not, but it isn't that a big deal, gcc will optimize the test away.

[Bug bootstrap/51969] [4.6 regression] gcc 4.7 unable to build gcc 4.6

2012-01-24 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51969 Richard Guenther changed: What|Removed |Added Target Milestone|--- |4.6.3 --- Comment #4 from Richard Guen

[Bug c/51971] unclear/unverified restrictions on attribute((const|pure))

2012-01-24 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51971 --- Comment #1 from Richard Guenther 2012-01-24 13:01:03 UTC --- GCC explicitely allows you to use const/pure to enable CSE even if it would not consider the function const/pure itself (thus, if you are happy to loose a second assert (), or a deb

[Bug rtl-optimization/44174] [4.4/4.5/4.6 Regression] can't find a register in class 'CLOBBERED_REGS' while reloading 'asm'

2012-01-24 Thread ro at CeBiTec dot Uni-Bielefeld.DE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44174 --- Comment #15 from ro at CeBiTec dot Uni-Bielefeld.DE 2012-01-24 12:55:38 UTC --- > --- Comment #14 from Andrew Pinski 2012-01-24 > 01:29:40 UTC --- > Since this was fixed on the trunk, can you remove the xfail? I already did so in April last

[Bug target/49868] Implement named address space to place/access data in flash memory

2012-01-24 Thread gjl at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49868 --- Comment #14 from Georg-Johann Lay 2012-01-24 12:38:59 UTC --- Author: gjl Date: Tue Jan 24 12:38:52 2012 New Revision: 183473 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183473 Log: PR target/49868 * doc/extend.texi (AVR Na

[Bug libstdc++/51965] Redundant move constructions in heap algorithms

2012-01-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51965 Paolo Carlini changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/41933] [c++0x] lambdas and variadic templates don't work together

2012-01-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41933 Paolo Carlini changed: What|Removed |Added CC||i.nixman at gmail dot com --- Comment #5

[Bug c++/51979] variadic templates + lambda capture list = error

2012-01-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51979 Paolo Carlini changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug fortran/42934] Bogus variable_check

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42934 --- Comment #1 from Dominique d'Humieres 2012-01-24 11:41:21 UTC --- > The following example shows this: For LOC(f) it prints the address of the > function, for LOC(f()) the result of the function call; but it fails for This is the case for gfor

[Bug target/51968] gcc trunk (ARM) ICEs in final_scan_insn in final.c:2716, with "could not split insn" error msg

2012-01-24 Thread eric.batut at allegorithmic dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51968 --- Comment #6 from Eric Batut 2012-01-24 11:17:33 UTC --- Our Neon codebase (lots of image processing filters) produce correct results with the patch applied to the latest trunk rev.

[Bug target/51959] [4.7 Regression] ICE in set_mem_alias_set, at emit-rtl.c:1884

2012-01-24 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51959 Eric Botcazou changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unassigned at

[Bug target/51968] gcc trunk (ARM) ICEs in final_scan_insn in final.c:2716, with "could not split insn" error msg

2012-01-24 Thread eric.batut at allegorithmic dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51968 --- Comment #5 from Eric Batut 2012-01-24 11:12:23 UTC --- (In reply to comment #3) > Created attachment 26436 [details] > proposed patch > > I'll run this through a cross-build first, but I expect this will fix it. This patch makes gcc trunk n

[Bug rtl-optimization/51978] ext-elim-1.c ICE on powerpc64

2012-01-24 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51978 Eric Botcazou changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/41823] gcc/fortran/trans-openmp.c: possible null pointer dereference

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41823 --- Comment #3 from Dominique d'Humieres 2012-01-24 11:09:05 UTC --- > It is guaranteed to be non-NULL for omp parallel/do/task and many others, see > the ew_st.ext.omp_clauses = something lines in openmp.c. Then is the 'if (clauses)' necessary?

[Bug c++/51979] New: variadic templates + lambda capture list = error

2012-01-24 Thread i.nixman at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51979 Bug #: 51979 Summary: variadic templates + lambda capture list = error Classification: Unclassified Product: gcc Version: 4.6.2 Status: UNCONFIRMED Severity: normal P

[Bug fortran/41823] gcc/fortran/trans-openmp.c: possible null pointer dereference

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41823 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #2 f

[Bug fortran/42693] Missing gcc-internal-format on messages from gfc_arith_error

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42693 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/51959] [4.7 Regression] ICE in set_mem_alias_set, at emit-rtl.c:1884

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51959 Jakub Jelinek changed: What|Removed |Added CC||ebotcazou at gcc dot |

[Bug libstdc++/51965] Redundant move constructions in heap algorithms

2012-01-24 Thread marc.glisse at normalesup dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51965 --- Comment #7 from Marc Glisse 2012-01-24 10:49:38 UTC --- (In reply to comment #6) > But __pop_heap doesn't seem so straightforward to tweak, we also changed > a bit the interfaces. At first glance, I am not sure why pop_heap can end up callin

[Bug fortran/41823] gcc/fortran/trans-openmp.c: possible null pointer dereference

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41823 Dominique d'Humieres changed: What|Removed |Added CC||jakub at redhat dot com --- Commen

[Bug c++/51223] [4.5/4.6 Regression] ICE with invalid function parameter

2012-01-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51223 Paolo Carlini changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug c++/51223] [4.5/4.6/4.7 Regression] ICE with invalid function parameter

2012-01-24 Thread paolo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51223 --- Comment #3 from paolo at gcc dot gnu.org 2012-01-24 10:39:08 UTC --- Author: paolo Date: Tue Jan 24 10:39:03 2012 New Revision: 183472 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183472 Log: /cp 2012-01-24 Paolo Carlini PR

[Bug middle-end/40060] [4.5/4.6/4.7 Regression] casts loose alignment info

2012-01-24 Thread vries at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40060 vries at gcc dot gnu.org changed: What|Removed |Added CC||vries at gcc dot gnu.org --- Co

[Bug rtl-optimization/45678] [4.4/4.5 Regression] crash on vector code with -m32 -msse

2012-01-24 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45678 --- Comment #33 from Richard Guenther 2012-01-24 10:23:19 UTC --- Author: rguenth Date: Tue Jan 24 10:23:14 2012 New Revision: 183471 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183471 Log: 2012-01-24 Richard Guenther Forward-p

[Bug fortran/51970] [OOP] gimplification failed for polymorphic MOVE_ALLOC

2012-01-24 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51970 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug bootstrap/49829] [4.7 Regression] --disable-static --enable-shared regression: cannot find -lstdc++

2012-01-24 Thread jan.kratochvil at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49829 --- Comment #21 from Jan Kratochvil 2012-01-24 10:17:14 UTC --- With r183465 it really builds for me now, thanks.

[Bug debug/51902] lexical_blocks inside inlined_subroutines generate duplicate debug_ranges

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51902 Jakub Jelinek changed: What|Removed |Added Target Milestone|--- |4.8.0 --- Comment #8 from Jakub Jelinek

[Bug other/51937] [meta-bug] GCC 4.8 pending patches

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51937 Jakub Jelinek changed: What|Removed |Added Target Milestone|--- |4.8.0

[Bug bootstrap/49829] [4.7 Regression] --disable-static --enable-shared regression: cannot find -lstdc++

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49829 Jakub Jelinek changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug tree-optimization/51879] Missed tail merging with non-const/pure calls

2012-01-24 Thread vries at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51879 vries at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|una

[Bug middle-end/48600] [4.6/4.7 Regression] ICE when using cold attribute

2012-01-24 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48600 --- Comment #13 from Jakub Jelinek 2012-01-24 10:09:38 UTC --- Honza, ping?

[Bug fortran/51966] [4.6/4.7 Regression] ICE in gfc_conv_array_constructor_expr

2012-01-24 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51966 --- Comment #5 from Tobias Burnus 2012-01-24 09:48:28 UTC --- (In reply to comment #4) > type(Deriv), save :: DepEcoSystem = Deriv(DEF_ECOSYSTEMS(1)) Here, the problem is that in #0 gfc_conv_string_init (length=0x2cf3b720, expr=0x16c117

[Bug fortran/51966] [4.6/4.7 Regression] ICE in gfc_conv_array_constructor_expr

2012-01-24 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51966 --- Comment #4 from Tobias Burnus 2012-01-24 09:26:56 UTC --- Reduced test case, which also illustrates another ICE: module EcoSystem_ml implicit none type, public:: Deriv character(len=10) :: name end type character(len=8), publi

[Bug rtl-optimization/45678] [4.4/4.5 Regression] crash on vector code with -m32 -msse

2012-01-24 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45678 --- Comment #32 from Richard Guenther 2012-01-24 09:17:11 UTC --- Author: rguenth Date: Tue Jan 24 09:17:01 2012 New Revision: 183470 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183470 Log: 2012-01-24 Richard Guenther Forward-p

  1   2   >