[Bug sanitizer/55309] gcc's address-sanitizer 66% slower than clang's

2013-02-07 Thread kcc at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55309 --- Comment #26 from Kostya Serebryany 2013-02-08 06:31:26 UTC --- FTR: here is the perf data for zero-based offset (clang) https://code.google.com/p/address-sanitizer/wiki/ZeroBasedShadow#Performance

[Bug c++/56251] New: no DW_AT_const_value for static const member of a template class

2013-02-07 Thread chihin.ko at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56251 Bug #: 56251 Summary: no DW_AT_const_value for static const member of a template class Classification: Unclassified Product: gcc Version: 4.6.2 Status: UNC

[Bug middle-end/56250] Wrong constant folding on unsigned int

2013-02-07 Thread ishiura-compiler at ml dot kwansei.ac.jp
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56250 --- Comment #3 from Ishiura Lab Compiler Team 2013-02-08 01:59:18 UTC --- (In reply to comment #1) > When I do this: > unsigned x = 2; > unsigned t = (x/2); > unsigned t1 = -t; > unsigned t2 = t2/2; >

[Bug middle-end/56250] Wrong constant folding on unsigned int

2013-02-07 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56250 Andrew Pinski changed: What|Removed |Added Keywords||wrong-code Component|c

[Bug c/56250] Wrong constant folding on unsigned int

2013-02-07 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56250 --- Comment #1 from Andrew Pinski 2013-02-08 01:51:39 UTC --- When I do this: unsigned x = 2; unsigned t = (x/2); unsigned t1 = -t; unsigned t2 = t2/2; t2 is 0 which is correct. I don't see why 214

[Bug c/56250] New: Wrong constant folding on unsigned int

2013-02-07 Thread ishiura-compiler at ml dot kwansei.ac.jp
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56250 Bug #: 56250 Summary: Wrong constant folding on unsigned int Classification: Unclassified Product: gcc Version: 4.7.2 Status: UNCONFIRMED Severity: normal

[Bug other/56249] New: gcc-nm doesn't work if gcc configured with --disable-lto

2013-02-07 Thread benno at benno dot id.au
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56249 Bug #: 56249 Summary: gcc-nm doesn't work if gcc configured with --disable-lto Classification: Unclassified Product: gcc Version: unknown Status: UNCONFIRME

[Bug fortran/56226] Add support for DEC UNION and MAP extensions

2013-02-07 Thread russelljbrennan at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56226 --- Comment #4 from russelljbrennan at gmail dot com 2013-02-08 01:03:12 UTC --- >From a memory standpoint yes, union/map can be replaced by equivalence. From an API standpoint it cannot afaik. A suggestion for the former lies here http://

[Bug fortran/56226] Add support for DEC UNION and MAP extensions

2013-02-07 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56226 --- Comment #3 from Andrew Pinski 2013-02-08 00:46:19 UTC --- Union can be replaced with EQUIVALENCE I think.

[Bug debug/55586] Incorrect .debug_line section for function with variable number of arguments in PowerPC

2013-02-07 Thread meissner at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55586 --- Comment #2 from Michael Meissner 2013-02-07 23:49:34 UTC --- As far as I can tell, it is a bug in earlier versions of GDB, and not in the compiler. Due to the ABI's, it will only show up in 32-bit powerpc with an older GDB. The 64-

[Bug c++/56247] [4.6/4.7/4.8 Regression] internal compiler error: in tsubst_copy, at cp/pt.c:12131

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

[Bug c++/56248] New: [DR 580] access checking of template parameters done too early

2013-02-07 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56248 Bug #: 56248 Summary: [DR 580] access checking of template parameters done too early Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED

[Bug target/52555] [4.6/4.7/4.8 Regression] ICE unrecognizable insn with -ffast-math and __attribute__((optimize(xx)))

2013-02-07 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52555 --- Comment #9 from Aldy Hernandez 2013-02-07 23:24:42 UTC --- Further reduced testcase, reproducible on both C and C++: float farg; unsigned val; void __attribute__((optimize("O"))) test() { val = __builtin_ceilf(farg); }

[Bug sanitizer/56245] -fsanitize=address miscompiles GCC

2013-02-07 Thread hjl.tools at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56245 --- Comment #1 from H.J. Lu 2013-02-07 23:00:53 UTC --- It is caused by revision 195404: http://gcc.gnu.org/ml/gcc-cvs/2013-01/msg00659.html

[Bug target/52555] [4.6/4.7/4.8 Regression] ICE unrecognizable insn with -ffast-math and __attribute__((optimize(xx)))

2013-02-07 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52555 --- Comment #8 from Aldy Hernandez 2013-02-07 22:44:17 UTC --- I'll take a look.

[Bug target/52555] [4.6/4.7/4.8 Regression] ICE unrecognizable insn with -ffast-math and __attribute__((optimize(xx)))

2013-02-07 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52555 Aldy Hernandez changed: What|Removed |Added CC||aldyh at gcc dot gnu.org --- C

[Bug c++/56247] New: internal compiler error: in tsubst_copy, at cp/pt.c:12131

2013-02-07 Thread dsagald8 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56247 Bug #: 56247 Summary: internal compiler error: in tsubst_copy, at cp/pt.c:12131 Classification: Unclassified Product: gcc Version: 4.7.2 Status: UNCONFIRMED

[Bug c++/56243] [4.8 regression] ICE in tree check: expected field_decl, have identifier_node in fixed_type_or_null, at cp/class.c:6645

2013-02-07 Thread fabien at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56243 fabien at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED Assi

[Bug c++/56241] [4.6/4.7 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 Jakub Jelinek changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unas

[Bug pending/55996] [meta-bug] GCC 4.9 pending patches

2013-02-07 Thread law at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55996 --- Comment #3 from Jeffrey A. Law 2013-02-07 22:00:03 UTC --- Patch to enable printing of escaped curlys and bars in assembler output. http://gcc.gnu.org/ml/gcc-patches/2012-11/msg01145.html

[Bug libitm/55693] [4.8 Regression] libitm.c++/eh-1.C execution test fails on darwin from r193271

2013-02-07 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55693 --- Comment #45 from Dominique d'Humieres 2013-02-07 21:59:38 UTC --- > ... Bootstrap regression > tested for tm.exp and libitm subdirectory on x86_64-apple-darwin10 with Xcode > 4.2 and x86_64-apple-darwin12 with Xcode 4.6. Can someone te

[Bug go/56173] Several libgo tests FAIL on Solaris/SPARC

2013-02-07 Thread ian at airs dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56173 Ian Lance Taylor changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug go/56173] Several libgo tests FAIL on Solaris/SPARC

2013-02-07 Thread ian at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56173 --- Comment #3 from ian at gcc dot gnu.org 2013-02-07 21:40:17 UTC --- Author: ian Date: Thu Feb 7 21:40:10 2013 New Revision: 195867 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195867 Log: PR go/56173 crypto/md5: fix

[Bug other/44116] 64bit inodes for source code causes "Value too large for defined data type" (XFS,inode64)

2013-02-07 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44116 --- Comment #7 from Andrew Pinski 2013-02-07 21:31:13 UTC --- Fixed so closing; 4.6.x and above is only supported for fixing bugs now.

[Bug c++/56241] [4.6/4.7/4.8 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 --- Comment #5 from Jakub Jelinek 2013-02-07 21:28:27 UTC --- Author: jakub Date: Thu Feb 7 21:27:55 2013 New Revision: 195866 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195866 Log: PR c++/56241 * init.c (build_ve

[Bug other/44116] 64bit inodes for source code causes "Value too large for defined data type" (XFS,inode64)

2013-02-07 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44116 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug middle-end/54582] gap in FORTIFY checking of buffer lengths

2013-02-07 Thread dcb314 at hotmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54582 --- Comment #13 from David Binderman 2013-02-07 21:21:56 UTC --- Created attachment 29391 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29391 C++ source code This code doesn't understand all sprintf % specifiers. It is future w

[Bug middle-end/54582] gap in FORTIFY checking of buffer lengths

2013-02-07 Thread dcb314 at hotmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54582 --- Comment #12 from David Binderman 2013-02-07 21:19:15 UTC --- I coded up some of my ideas into the attached C++ source code. Then I modified builtins.c and did a bootstrap. My small patch seems to be working well. I'm sure someone

[Bug other/44116] 64bit inodes for source code causes "Value too large for defined data type" (XFS,inode64)

2013-02-07 Thread gcc at breakpoint dot cc
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44116 Sebastian Andrzej Siewior changed: What|Removed |Added CC||gcc at breakpoint dot

[Bug middle-end/55943] [4.6/4.7/4.8 Regression] ICE in gen_reg_rtx

2013-02-07 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55943 Aldy Hernandez changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug debug/53948] [4.8 Regression] Assignment line missing for -O0 -g

2013-02-07 Thread law at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53948 --- Comment #8 from Jeffrey A. Law 2013-02-07 20:46:10 UTC --- Also note the patch, to the best of my knowledge, was not ping'd. As a regression (and a P1 regression I might add) I would have expected Steven to ping the patch and/or Jakub

[Bug debug/53948] [4.8 Regression] Assignment line missing for -O0 -g

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53948 --- Comment #7 from Jakub Jelinek 2013-02-07 20:40:31 UTC --- (In reply to comment #6) > Not true: http://gcc.gnu.org/ml/gcc-patches/2012-07/msg00847.html http://gcc.gnu.org/ml/gcc-patches/2012-12/msg01104.html ?

[Bug target/56043] ICE in rs6000_builtin_vectorized_libmass for vsx-mass-1.c

2013-02-07 Thread meissner at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56043 --- Comment #1 from Michael Meissner 2013-02-07 20:27:19 UTC --- Created attachment 29390 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29390 Patch to fix the problem There are two problems here. The first problem is the segmen

[Bug debug/53948] [4.8 Regression] Assignment line missing for -O0 -g

2013-02-07 Thread stevenb.gcc at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53948 --- Comment #6 from stevenb.gcc at gmail dot com 2013-02-07 20:24:07 UTC --- On Thu, Feb 7, 2013 at 9:04 PM, law at redhat dot com wrote: > The real way to get the prior behaviour without reverting the patch is to > either explicitly mark

[Bug c/56246] [4.8 regression] ICE in assign_by_spills, at lra-assigns.c:1262

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56246 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/56043] ICE in rs6000_builtin_vectorized_libmass for vsx-mass-1.c

2013-02-07 Thread meissner at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56043 Michael Meissner changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug rtl-optimization/56195] [4.8 Regression] Error: incorrect register `%rdi' used with `l' suffix (at -O2)

2013-02-07 Thread vmakarov at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56195 --- Comment #7 from Vladimir Makarov 2013-02-07 20:08:47 UTC --- (In reply to comment #6) > Actually, that one doesn't really work, because we have pseudo rather than > hard > reg at that point, which will never simplify. > > With this

[Bug debug/53948] [4.8 Regression] Assignment line missing for -O0 -g

2013-02-07 Thread law at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53948 Jeffrey A. Law changed: What|Removed |Added CC||law at redhat dot com A

[Bug rtl-optimization/56195] [4.8 Regression] Error: incorrect register `%rdi' used with `l' suffix (at -O2)

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56195 --- Comment #6 from Jakub Jelinek 2013-02-07 20:02:20 UTC --- Actually, that one doesn't really work, because we have pseudo rather than hard reg at that point, which will never simplify. With this: --- lra-constraints.c.jj2013-02

[Bug rtl-optimization/56195] [4.8 Regression] Error: incorrect register `%rdi' used with `l' suffix (at -O2)

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56195 --- Comment #5 from Jakub Jelinek 2013-02-07 19:47:04 UTC --- So something like: --- lra-constraints.c.jj2013-02-07 18:34:39.0 +0100 +++ lra-constraints.c2013-02-07 20:41:17.051986353 +0100 @@ -421,7 +421,21 @@ get_reloa

[Bug libitm/55693] [4.8 Regression] libitm.c++/eh-1.C execution test fails on darwin from r193271

2013-02-07 Thread howarth at nitro dot med.uc.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55693 --- Comment #44 from Jack Howarth 2013-02-07 19:33:24 UTC --- Created attachment 29389 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29389 revised patch to fix darwin10 under Xcode 4.2 The attached patch removes the " && !defined

[Bug rtl-optimization/56195] [4.8 Regression] Error: incorrect register `%rdi' used with `l' suffix (at -O2)

2013-02-07 Thread vmakarov at redhat dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56195 Vladimir Makarov changed: What|Removed |Added CC||vmakarov at redhat dot com -

[Bug bootstrap/56227] Bootstrap failure on MinGW building ggc-page.c

2013-02-07 Thread ubizjak at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56227 Uros Bizjak changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug bootstrap/56227] Bootstrap failure on MinGW building ggc-page.c

2013-02-07 Thread uros at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56227 --- Comment #14 from uros at gcc dot gnu.org 2013-02-07 19:18:40 UTC --- Author: uros Date: Thu Feb 7 19:18:27 2013 New Revision: 195865 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195865 Log: Backport from mainline

[Bug middle-end/56231] warning traces have bogus line information when using LTO

2013-02-07 Thread manu at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56231 Manuel López-Ibáñez changed: What|Removed |Added CC||manu at gcc dot gnu.org --- Commen

[Bug c/56246] New: [4.8 regression] ICE in assign_by_spills, at lra-assigns.c:1262

2013-02-07 Thread ppluzhnikov at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56246 Bug #: 56246 Summary: [4.8 regression] ICE in assign_by_spills, at lra-assigns.c:1262 Classification: Unclassified Product: gcc Version: unknown Status: UNC

[Bug c++/56243] [4.8 regression] ICE in tree check: expected field_decl, have identifier_node in fixed_type_or_null, at cp/class.c:6645

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56243 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/50678] [4.7/4.8 Regression] FAIL: c52104y on x86_64-apple-darwin10

2013-02-07 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50678 Eric Botcazou changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug c++/56241] [4.6/4.7/4.8 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 --- Comment #4 from Jakub Jelinek 2013-02-07 18:09:29 UTC --- Created attachment 29388 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29388 gcc48-pr56241.patch Patch with also the two other spots changed.

[Bug target/50678] [4.7/4.8 Regression] FAIL: c52104y on x86_64-apple-darwin10

2013-02-07 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50678 --- Comment #81 from Eric Botcazou 2013-02-07 18:09:02 UTC --- Author: ebotcazou Date: Thu Feb 7 18:08:41 2013 New Revision: 195864 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195864 Log: PR target/50678 * init.c (

[Bug target/50678] [4.7/4.8 Regression] FAIL: c52104y on x86_64-apple-darwin10

2013-02-07 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50678 --- Comment #80 from Eric Botcazou 2013-02-07 18:08:21 UTC --- Author: ebotcazou Date: Thu Feb 7 18:07:58 2013 New Revision: 195863 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195863 Log: PR target/50678 * init.c (

[Bug target/50678] [4.7/4.8 Regression] FAIL: c52104y on x86_64-apple-darwin10

2013-02-07 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50678 --- Comment #79 from Eric Botcazou 2013-02-07 18:07:40 UTC --- Author: ebotcazou Date: Thu Feb 7 18:07:18 2013 New Revision: 195862 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195862 Log: PR target/50678 * init.c (

[Bug bootstrap/56227] Bootstrap failure on MinGW building ggc-page.c

2013-02-07 Thread uros at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56227 --- Comment #13 from uros at gcc dot gnu.org 2013-02-07 18:02:00 UTC --- Author: uros Date: Thu Feb 7 18:01:40 2013 New Revision: 195860 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195860 Log: PR bootstrap/56227 * gg

[Bug c++/56239] [4.6/4.7 Regression] parse error calling operator() on parenthesized value-initialized temporary

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56239 Jakub Jelinek changed: What|Removed |Added Status|NEW |ASSIGNED Known to work|

[Bug rtl-optimization/56225] [4.8 Regression] ICE in lra-constraints.c when executing the testsuite with -m32 -march=pentium3

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56225 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug c++/56239] [4.6/4.7/4.8 Regression] parse error calling operator() on parenthesized value-initialized temporary

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56239 --- Comment #5 from Jakub Jelinek 2013-02-07 17:50:15 UTC --- Author: jakub Date: Thu Feb 7 17:49:59 2013 New Revision: 195859 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195859 Log: PR c++/56239 * parser.c (cp_par

[Bug c++/56241] [4.6/4.7/4.8 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|NEW AssignedTo|jason at

[Bug c++/56238] [4.7/4.8 regression] ICE in tree check: expected record_type or union_type or qual_union_type, have template_type_parm in lookup_conversions, at cp/search.c:2515

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56238 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unas

[Bug target/56164] [avr] ICE: spill fail with __flash keyword

2013-02-07 Thread gjl at gcc dot gnu.org
#4 from Georg-Johann Lay 2013-02-07 17:45:56 UTC --- Confirmed with: gcc version 4.7.3 20130207 (prerelease) [gcc-4_7-branch revision 195858] (GCC) Configured with: ../../gcc.gnu.org/gcc-4_7-branch/configure --target=avr --prefix=/local/gnu/install/gcc-4.7 --disable-nls --with-dwarf2

[Bug c++/56237] [4.6/4.7 regression] ICE in lang_* check: failed in push_local_name, at cp/decl.c:924

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56237 Jakub Jelinek changed: What|Removed |Added Known to work||4.8.0 Summary|[4.6/4.

[Bug c++/56237] [4.6/4.7/4.8 regression] ICE in lang_* check: failed in push_local_name, at cp/decl.c:924

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56237 --- Comment #5 from Jakub Jelinek 2013-02-07 17:38:43 UTC --- Author: jakub Date: Thu Feb 7 17:38:33 2013 New Revision: 195858 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195858 Log: PR c++/56237 * decl.c (push_loc

[Bug sanitizer/56245] New: -fsanitize=address miscompiles GCC

2013-02-07 Thread hjl.tools at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56245 Bug #: 56245 Summary: -fsanitize=address miscompiles GCC Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: normal Prio

[Bug c++/56241] [4.6/4.7/4.8 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unas

[Bug sanitizer/55309] gcc's address-sanitizer 66% slower than clang's

2013-02-07 Thread dvyukov at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55309 --- Comment #25 from Dmitry Vyukov 2013-02-07 17:18:05 UTC --- On Thu, Feb 7, 2013 at 9:00 PM, jakub at gcc dot gnu.org wrote: > > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55309 > > --- Comment #24 from Jakub Jelinek 2013-02-07 >

[Bug c++/56235] [4.8 regression] Bogus "error: invalid conversion from ‘unsigned char’ to ‘B::Mode’ [-fpermissive]"

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56235 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug rtl-optimization/56225] [4.8 Regression] ICE in lra-constraints.c when executing the testsuite with -m32 -march=pentium3

2013-02-07 Thread vmakarov at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56225 --- Comment #2 from Vladimir Makarov 2013-02-07 17:15:30 UTC --- Author: vmakarov Date: Thu Feb 7 17:15:02 2013 New Revision: 195856 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195856 Log: 2013-02-07 Vladimir Makarov

[Bug go/56171] syscall FAILs on Solaris

2013-02-07 Thread ro at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56171 --- Comment #4 from Rainer Orth 2013-02-07 17:06:27 UTC --- Created attachment 29387 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29387 proposed patch 2013-02-06 Rainer Orth PR go/56171 * mksysinfo.sh (AF_LOCAL): P

[Bug go/56172] net FAILs on Solaris

2013-02-07 Thread ian at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56172 --- Comment #6 from ian at gcc dot gnu.org 2013-02-07 17:04:37 UTC --- Author: ian Date: Thu Feb 7 17:04:24 2013 New Revision: 195855 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195855 Log: PR go/56172 net: Skip TestMu

[Bug go/56171] syscall FAILs on Solaris

2013-02-07 Thread ro at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56171 Rainer Orth changed: What|Removed |Added Status|RESOLVED|REOPENED Last reconfirmed|

[Bug driver/56244] -O3 should imply -funroll-loops

2013-02-07 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56244 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug sanitizer/55309] gcc's address-sanitizer 66% slower than clang's

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55309 --- Comment #24 from Jakub Jelinek 2013-02-07 17:00:17 UTC --- (In reply to comment #23) > #1 afaict, the asan pass happens in the middle of the gcc optimization flow. > imho it should happen as late as possible so that the instrumentation

[Bug rtl-optimization/52876] [x32] - Sign extend 32 to 64bit then clear upper 32bits fails O1 or higher

2013-02-07 Thread hjl.tools at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52876 H.J. Lu changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|2012-04-05 00:0

[Bug c++/56235] [4.8 regression] Bogus "error: invalid conversion from ‘unsigned char’ to ‘B::Mode’ [-fpermissive]"

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56235 --- Comment #2 from Jason Merrill 2013-02-07 16:32:39 UTC --- Author: jason Date: Thu Feb 7 16:32:28 2013 New Revision: 195854 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195854 Log: PR c++/56235 * method.c (do_bui

[Bug target/51784] PIC register not correctly preserved in nested funcs / with non-local goto

2013-02-07 Thread howarth at nitro dot med.uc.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51784 --- Comment #46 from Jack Howarth 2013-02-07 16:27:41 UTC --- (In reply to comment #42) Full regression test results on x86_64-apple-darwin12 are at... http://gcc.gnu.org/ml/gcc-testresults/2013-02/msg00745.html

[Bug driver/56244] New: -O3 should imply -funroll-loops

2013-02-07 Thread Joost.VandeVondele at mat dot ethz.ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56244 Bug #: 56244 Summary: -O3 should imply -funroll-loops Classification: Unclassified Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Prior

[Bug c++/56241] [4.6/4.7/4.8 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 --- Comment #2 from Jakub Jelinek 2013-02-07 16:25:21 UTC --- Created attachment 29386 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29386 gcc48-pr56241.patch Fixed thusly, build_constructor doesn't like elts with NULL values, suc

[Bug c++/56243] New: [4.8 regression] ICE in tree check: expected field_decl, have identifier_node in fixed_type_or_null, at cp/class.c:6645

2013-02-07 Thread ppluzhnikov at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56243 Bug #: 56243 Summary: [4.8 regression] ICE in tree check: expected field_decl, have identifier_node in fixed_type_or_null, at cp/class.c:6645 Classification: Unclassified

[Bug middle-end/56242] New: [4.8 Regression] libjava/classpath/gnu/javax/swing/text/html/parser/support/textPreProcessor.java:175:0: ICE: Segmentation fault

2013-02-07 Thread danglin at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56242 Bug #: 56242 Summary: [4.8 Regression] libjava/classpath/gnu/javax/swing/text/html/parser/sup port/textPreProcessor.java:175:0: ICE: Segmentation fault

[Bug tree-optimization/52868] [4.7/4.8 Regression] 4.6 is faster on Atom

2013-02-07 Thread aldyh at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52868 Aldy Hernandez changed: What|Removed |Added Status|UNCONFIRMED |WAITING Last reconfirmed|

[Bug c++/56241] [4.6/4.7/4.8 Regression] ICE in toplev.c:332 on invalid

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 Jakub Jelinek changed: What|Removed |Added Priority|P3 |P4 Status|UNCONFIRME

[Bug debug/56154] [4.7 Regression] Bad .debug_loc generated for some code

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56154 Jakub Jelinek changed: What|Removed |Added Summary|[4.7/4.8 Regression] Bad|[4.7 Regression] Bad

[Bug c++/56237] [4.6/4.7/4.8 regression] ICE in lang_* check: failed in push_local_name, at cp/decl.c:924

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56237 --- Comment #4 from Jason Merrill 2013-02-07 15:18:07 UTC --- (In reply to comment #3) > Created attachment 29383 [details] > gcc48-pr56237.patch OK.

[Bug c++/56241] New: ICE in toplev.c:332 on invalid

2013-02-07 Thread ppluzhnikov at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56241 Bug #: 56241 Summary: ICE in toplev.c:332 on invalid Classification: Unclassified Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3

[Bug libstdc++/56193] ios_base should replace operator void* with explicit operator bool in C++11 onwards.

2013-02-07 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56193 Paolo Carlini changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug tree-optimization/55022] [4.8 Regression] air.f90 is miscompliled with -m64 -O2 -fgraphite-identity after revision 190619

2013-02-07 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55022 --- Comment #12 from Dominique d'Humieres 2013-02-07 15:11:23 UTC --- If I replace the loop DO i = Spx , Epx vn1 = U(i,Apy)*NX1(i) + V(i,Apy)*NY1(i) P(i,Apy) = P(i,Apy)/DEXP(GMA*vn1/AS1(i)) U(i,Apy) = 0.0

[Bug c++/56239] [4.6/4.7/4.8 Regression] parse error calling operator() on parenthesized value-initialized temporary

2013-02-07 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56239 --- Comment #4 from Jason Merrill 2013-02-07 15:02:53 UTC --- (In reply to comment #3) > gcc48-pr56239.patch OK. > BTW, I wonder where the standard resolves the ambiguity between parsing it as > a > function call with parenthesized

[Bug tree-optimization/55022] [4.8 Regression] air.f90 is miscompliled with -m64 -O2 -fgraphite-identity after revision 190619

2013-02-07 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55022 Dominique d'Humieres changed: What|Removed |Added Status|WAITING |NEW --- Comment #11 from

[Bug debug/56154] [4.7/4.8 Regression] Bad .debug_loc generated for some code

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56154 --- Comment #2 from Jakub Jelinek 2013-02-07 14:48:51 UTC --- Author: jakub Date: Thu Feb 7 14:48:39 2013 New Revision: 195850 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195850 Log: PR debug/56154 * dwarf2out.c (d

[Bug middle-end/56231] warning traces have bogus line information when using LTO

2013-02-07 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56231 --- Comment #4 from Richard Biener 2013-02-07 14:35:24 UTC --- (In reply to comment #3) > (In reply to comment #1) > > Index: gcc/lto-streamer-in.c > > === > > --- gcc/lto-s

[Bug middle-end/56231] warning traces have bogus line information when using LTO

2013-02-07 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56231 --- Comment #3 from Richard Biener 2013-02-07 14:01:50 UTC --- (In reply to comment #1) > Index: gcc/lto-streamer-in.c > === > --- gcc/lto-streamer-in.c (revision 19584

[Bug middle-end/56231] warning traces have bogus line information when using LTO

2013-02-07 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56231 --- Comment #2 from Richard Biener 2013-02-07 13:54:20 UTC --- To clarify, we are also switching between different translation-units main filenames - but I don't think we can easily distinguish this from #includes. Well, maybe we can, if a

[Bug target/51784] PIC register not correctly preserved in nested funcs / with non-local goto

2013-02-07 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51784 --- Comment #45 from Dominique d'Humieres 2013-02-07 13:54:07 UTC --- (In reply to comment #43) > On x86_64-apple-darwin12, while the proposed patch from Comment 42 bootstraps > fine, it does produce a new regression at -m64... This is

[Bug target/51784] PIC register not correctly preserved in nested funcs / with non-local goto

2013-02-07 Thread howarth at nitro dot med.uc.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51784 --- Comment #44 from Jack Howarth 2013-02-07 13:49:36 UTC --- Created attachment 29385 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29385 assembly file for failing gcc.target/i386/pr49866.c compilation at -m64 Compiled with...

[Bug target/51784] PIC register not correctly preserved in nested funcs / with non-local goto

2013-02-07 Thread howarth at nitro dot med.uc.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51784 --- Comment #43 from Jack Howarth 2013-02-07 13:45:45 UTC --- (In reply to comment #42) On x86_64-apple-darwin12, while the proposed patch from Comment 42 bootstraps fine, it does produce a new regression at -m64... Executing on host: /

[Bug fortran/56226] Add support for DEC UNION and MAP extensions

2013-02-07 Thread russelljbrennan at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56226 --- Comment #2 from russelljbrennan at gmail dot com 2013-02-07 13:31:16 UTC --- It seems to me that the UNION/MAP pair is analogous to a basic form of a c/c++ union of structs. Could the corresponding code not be ganked and fitted to this

[Bug c++/56239] [4.6/4.7/4.8 Regression] parse error calling operator() on parenthesized value-initialized temporary

2013-02-07 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56239 --- Comment #3 from Jakub Jelinek 2013-02-07 13:14:12 UTC --- Created attachment 29384 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29384 gcc48-pr56239.patch If () is the only problem, then it can be fixed e.g. by the following p

[Bug bootstrap/56227] Bootstrap failure on MinGW building ggc-page.c

2013-02-07 Thread ubizjak at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56227 Uros Bizjak changed: What|Removed |Added URL||http://gcc.gnu.org/ml/gcc-p

[Bug other/56240] New: -fopenmp and -pthread behave inconsistently with respect to -nostdlib

2013-02-07 Thread yury at shurup dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56240 Bug #: 56240 Summary: -fopenmp and -pthread behave inconsistently with respect to -nostdlib Classification: Unclassified Product: gcc Version: 4.4.5 Status:

[Bug web/56233] Bugzilla: files (*.c, *.diff, etc.) wrongly recognized as application/octet-stream

2013-02-07 Thread LpSolit at netscape dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56233 Frédéric Buclin changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug c++/56239] [4.6/4.7/4.8 Regression] parse error calling operator() on parenthesized value-initialized temporary

2013-02-07 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56239 Paolo Carlini changed: What|Removed |Added CC||manu at gcc dot gnu.org --- Com

  1   2   >