[Bug c/52592] mplayer compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 06:00:37 UTC --- What target is this on?

[Bug middle-end/52592] mplayer compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |WAITING Last

[Bug middle-end/52592] mplayer compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread ojab at ojab dot ru
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #3 from ojab ojab at ojab dot ru 2012-03-15 06:04:02 UTC --- $ gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.0/lto-wrapper Target: x86_64-unknown-linux-gnu Configured with:

[Bug middle-end/52592] mplayer compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread ojab at ojab dot ru
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #4 from ojab ojab at ojab dot ru 2012-03-15 06:04:38 UTC --- Created attachment 26896 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=26896 Preprocessed source

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Keywords||link-failure,

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #6 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 06:13:42 UTC --- Note a simple testcase works correctly.

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #7 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 06:43:55 UTC --- Reduced testcase: int best_state[256][256]; __attribute__((cold)) int encode_init(double p) { return best_state[(int)round(p)][0]; } --- CUT ---

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #8 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 07:10:46 UTC --- Here is the smallest testcase: __attribute__((cold)) int encode_init(double p) { return (int)__builtin_round(p); } CUT I think I have a patch,

[Bug go/52583] Several new go testsuite failues on Solaris

2012-03-15 Thread ubizjak at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52583 --- Comment #3 from Uros Bizjak ubizjak at gmail dot com 2012-03-15 07:21:12 UTC --- (In reply to comment #2) What's failing is not Printf or Println, but the filename and line number. Those are retrieved using DWARF lookup on the PC, and

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #9 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 07:25:21 UTC --- Created attachment 26897 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=26897 Patch which fixes the problem I don't have enough time to regress test

[Bug libstdc++/52590] std::thread Segmentation fault static linking

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52590 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added CC||jakub at gcc dot

[Bug target/51244] SH Target: Inefficient conditional branch

2012-03-15 Thread kkojima at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51244 --- Comment #33 from Kazumoto Kojima kkojima at gcc dot gnu.org 2012-03-15 07:52:21 UTC --- (In reply to comment #31) Created attachment 26859 [details] testresult on sh4-unknown-linux-gnu [trunk revision 185088]. FYI, looking into the

[Bug rtl-optimization/45813] [4.5 Regression] alias analysis problem with -mthumb

2012-03-15 Thread mikpe at it dot uu.se
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45813 --- Comment #15 from Mikael Pettersson mikpe at it dot uu.se 2012-03-15 08:10:55 UTC --- -fno-strict-aliasing makes no difference to the code generated by 4.5-20120308. Replacing the type-punning with a union results in both correct-looking and

[Bug target/45213] suffix or operands invalid for `push' triggered by optimisations on x86_64

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45213 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Status|REOPENED|RESOLVED

[Bug tree-optimization/52588] false warning: array subscript is above array bounds: number of elements is 1

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52588 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 08:58:14 UTC --- I don't think there is a way for the compiler to see if idx_5 is within the range of [0, 9]. So we are warning for the cases where idx_5 is out of the range

[Bug middle-end/52587] using out of bounds of an array with size of one

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52587 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 09:01:35 UTC --- This works correctly with 4.8.0 20120313 and 4.7.0 20120212.

[Bug tree-optimization/52589] VRP missed optimization

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

[Bug middle-end/52547] ICE with openmp with nested function which requires a trampoline

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52547 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Summary|Internal compiler Error in |ICE with openmp

[Bug middle-end/52547] [4.5/4.6/4.7/4.8 Regression] ICE with openmp with nested function which requires a trampoline

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52547 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Known to work||4.3.5 Target

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added Attachment #26897|0 |1 is

[Bug c/52534] gcc doesn't detect incorrect expression in call to va_start

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52534 --- Comment #2 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 09:41:38 UTC --- /* Strip off all nops for the sake of the comparison. This is not quite the same as STRIP_NOPS. It does more. We must also strip

[Bug c++/52582] [4.7/4.8 Regression] g++ ICE when compiling qt-4.8.0 with -O2 on PPC (32bit)

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52582 --- Comment #11 from Jakub Jelinek jakub at gcc dot gnu.org 2012-03-15 09:48:31 UTC --- Bootstrapped/regtested now on x86_64-linux and i686-linux (trunk) and {x86_64,i686,powerpc,powerpc64}-linux (4.7 branch, with the rs6000.c change backed out).

[Bug target/52593] Builtin sqrt on x86 is not correctly rounded

2012-03-15 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52593 Richard Guenther rguenth at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |WAITING

[Bug c++/44783] implement -ftemplate-backtrace-limit=

2012-03-15 Thread paolo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44783 --- Comment #14 from paolo at gcc dot gnu.org paolo at gcc dot gnu.org 2012-03-15 09:57:35 UTC --- Author: paolo Date: Thu Mar 15 09:57:29 2012 New Revision: 185424 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185424 Log: /c-family

[Bug c++/44783] implement -ftemplate-backtrace-limit=

2012-03-15 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44783 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug c/52534] gcc doesn't detect incorrect expression in call to va_start

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52534 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added CC||jakub at gcc dot

[Bug rtl-optimization/52528] combine bug (powerpc testcase)

2012-03-15 Thread cltang at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52528 --- Comment #3 from Chung-Lin Tang cltang at gcc dot gnu.org 2012-03-15 10:04:18 UTC --- Author: cltang Date: Thu Mar 15 10:04:12 2012 New Revision: 185425 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185425 Log: 2012-03-15 Chung-Lin

[Bug middle-end/52580] [4.8 Regression] 171.swim performance drop on x86 – vectorization doesn’t happen anymore

2012-03-15 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52580 --- Comment #4 from Richard Guenther rguenth at gcc dot gnu.org 2012-03-15 10:04:59 UTC --- Author: rguenth Date: Thu Mar 15 10:04:55 2012 New Revision: 185426 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185426 Log: 2012-03-15 Richard

[Bug middle-end/52580] [4.8 Regression] 171.swim performance drop on x86 – vectorization doesn’t happen anymore

2012-03-15 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52580 Richard Guenther rguenth at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug tree-optimization/52267] a~N where N has all the bits set up till a specific point can be folded to ((unsigned)a) N

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52267 --- Comment #5 from Jakub Jelinek jakub at gcc dot gnu.org 2012-03-15 10:37:31 UTC --- Author: jakub Date: Thu Mar 15 10:37:27 2012 New Revision: 185427 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185427 Log: PR

[Bug tree-optimization/52267] a~N where N has all the bits set up till a specific point can be folded to ((unsigned)a) N

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52267 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug target/52575] avr*: error: unable to find a register to spill in class 'POINTER_REGS

2012-03-15 Thread gjl at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52575 --- Comment #4 from Georg-Johann Lay gjl at gcc dot gnu.org 2012-03-15 12:14:56 UTC --- (In reply to comment #3) (In reply to comment #2) There are already spill fails reported for AVR, it's a known problem. At this point it cannot be

[Bug middle-end/52580] [4.8 Regression] 171.swim performance drop on x86 – vectorization doesn’t happen anymore

2012-03-15 Thread vbyakovl23 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52580 --- Comment #6 from Vladimir Yakovlev vbyakovl23 at gmail dot com 2012-03-15 12:53:50 UTC --- I checked the fix gives 21% acceleration of 171.swim on Sundy Bridge. Thanks.

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #11 from Jakub Jelinek jakub at gcc dot gnu.org 2012-03-15 13:30:10 UTC --- Author: jakub Date: Thu Mar 15 13:30:04 2012 New Revision: 185431 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185431 Log: PR middle-end/52592

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 --- Comment #12 from Jakub Jelinek jakub at gcc dot gnu.org 2012-03-15 13:40:19 UTC --- Author: jakub Date: Thu Mar 15 13:40:13 2012 New Revision: 185432 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185432 Log: PR middle-end/52592

[Bug middle-end/52592] [4.7/4.8 Regression] compilation failure with undefined reference to `__builtin_iround'

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52592 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with relocation truncated to fit: GPREL16 against ...

2012-03-15 Thread ubizjak at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230 Uros Bizjak ubizjak at gmail dot com changed: What|Removed |Added Summary|[4.6/4.7/4.8 Regression]|[4.6 Regression]

[Bug libfortran/52434] Insufficient number of digits in floating point formatting

2012-03-15 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52434 --- Comment #2 from Janne Blomqvist jb at gcc dot gnu.org 2012-03-15 15:14:48 UTC --- Author: jb Date: Thu Mar 15 15:14:43 2012 New Revision: 185433 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185433 Log: 2012-03-15 Janne Blomqvist

[Bug libfortran/48878] Default I/O rounding on output should be round to nearest

2012-03-15 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48878 --- Comment #2 from Janne Blomqvist jb at gcc dot gnu.org 2012-03-15 15:14:49 UTC --- Author: jb Date: Thu Mar 15 15:14:43 2012 New Revision: 185433 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185433 Log: 2012-03-15 Janne Blomqvist

[Bug libfortran/38199] missed optimization: I/O performance

2012-03-15 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38199 --- Comment #15 from Janne Blomqvist jb at gcc dot gnu.org 2012-03-15 15:14:51 UTC --- Author: jb Date: Thu Mar 15 15:14:43 2012 New Revision: 185433 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185433 Log: 2012-03-15 Janne Blomqvist

[Bug libfortran/48878] Default I/O rounding on output should be round to nearest

2012-03-15 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48878 Janne Blomqvist jb at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug libfortran/52434] Insufficient number of digits in floating point formatting

2012-03-15 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52434 Janne Blomqvist jb at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug libstdc++/52540] std::use_facet throws bad_cast when compiled with _GLIBCXX_DEBUG

2012-03-15 Thread pluto at agmk dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52540 --- Comment #12 from Pawel Sikora pluto at agmk dot net 2012-03-15 15:49:09 UTC --- hmm, i see something weird. in source tree the c++config.h contains: # undef _GLIBCXX_EXTERN_TEMPLATE # define _GLIBCXX_EXTERN_TEMPLATE -1 but after

[Bug target/52451] gcc w/i387 float generates fucom rather than fcom for floating point comparsons

2012-03-15 Thread bugdal at aerifal dot cx
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52451 --- Comment #2 from Rich Felker bugdal at aerifal dot cx 2012-03-15 16:23:11 UTC --- Try foo(NAN,NAN) and then check for the INVALID exception. It's not set.

[Bug go/52583] Several new go testsuite failues on Solaris

2012-03-15 Thread ian at airs dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52583 --- Comment #4 from Ian Lance Taylor ian at airs dot com 2012-03-15 16:23:33 UTC --- If you look at the test (libgo/go/log/log_test.go), you'll see that it simply does if useFormat { Printf(hello %d world, 23) } else {

[Bug libstdc++/52540] std::use_facet throws bad_cast when compiled with _GLIBCXX_DEBUG

2012-03-15 Thread pluto at agmk dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52540 --- Comment #13 from Pawel Sikora pluto at agmk dot net 2012-03-15 16:36:33 UTC --- Created attachment 26899 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=26899 don't touch with sed the _GLIBCXX_EXTERN_TEMPLATE redefiniton.

[Bug target/52593] Builtin sqrt on x86 is not correctly rounded

2012-03-15 Thread bugdal at aerifal dot cx
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52593 --- Comment #2 from Rich Felker bugdal at aerifal dot cx 2012-03-15 16:37:25 UTC --- Tested with gcc 4.6.2. #include stdio.h #include math.h int main() { volatile double x = 0x1.fp-1; volatile double y = sqrt(x);

[Bug fortran/37336] Fortran 2003: Finish derived-type finalization

2012-03-15 Thread w6ws at earthlink dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37336 --- Comment #8 from Walter Spector w6ws at earthlink dot net 2012-03-15 17:24:59 UTC --- Should this bug report number be added to the F2003 meta bug? (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20585)

[Bug fortran/52594] New: no traceback expected for explicit fortran stop command combined with -fbacktrace

2012-03-15 Thread kloedej at knmi dot nl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52594 Bug #: 52594 Summary: no traceback expected for explicit fortran stop command combined with -fbacktrace Classification: Unclassified Product: gcc Version: 4.6.2

[Bug c++/52595] New: Incorrect parsing of commas in non-static data member initializers

2012-03-15 Thread jeremy at jeremyms dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52595 Bug #: 52595 Summary: Incorrect parsing of commas in non-static data member initializers Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/52595] Incorrect parsing of commas in non-static data member initializers

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52595 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org 2012-03-15 18:53:00 UTC --- See C++ defect report 325, it says it applies to NSDMI also.

[Bug fortran/52594] no traceback expected for explicit fortran stop command combined with -fbacktrace

2012-03-15 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52594 Tobias Burnus burnus at gcc dot gnu.org changed: What|Removed |Added CC||burnus at gcc

[Bug c++/52595] [DR 325] commas and non-static data member initializers don't mix

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52595 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |SUSPENDED

[Bug target/52593] Builtin sqrt on x86 is not correctly rounded

2012-03-15 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52593 --- Comment #3 from Dominique d'Humieres dominiq at lps dot ens.fr 2012-03-15 19:24:53 UTC --- On x86_64-apple-darwin10 (default '-mfpmath=sse'), I get '0x1.fp-1' for all the revisions I have tested (from 4.4 to 4.8) unless I compile

[Bug lto/43377] lto decreases C++ stacktrace readability (debuginfo pubnames).

2012-03-15 Thread pluto at agmk dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43377 Pawel Sikora pluto at agmk dot net changed: What|Removed |Added Status|NEW |RESOLVED

[Bug c++/52582] [4.7/4.8 Regression] g++ ICE when compiling qt-4.8.0 with -O2 on PPC (32bit)

2012-03-15 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52582 --- Comment #12 from Jason Merrill jason at gcc dot gnu.org 2012-03-15 21:22:48 UTC --- Author: jason Date: Thu Mar 15 21:22:38 2012 New Revision: 185443 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185443 Log: PR c++/52582 *

[Bug go/52583] Several new go testsuite failues on Solaris

2012-03-15 Thread ubizjak at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52583 --- Comment #5 from Uros Bizjak ubizjak at gmail dot com 2012-03-15 22:01:51 UTC --- (In reply to comment #4) If you look at the test (libgo/go/log/log_test.go), you'll see that it simply does if useFormat { Printf(hello %d

[Bug target/52568] suboptimal __builtin_shuffle on cycles with AVX

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52568 --- Comment #3 from Jakub Jelinek jakub at gcc dot gnu.org 2012-03-15 23:45:49 UTC --- Author: jakub Date: Thu Mar 15 23:45:45 2012 New Revision: 185446 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185446 Log: PR target/52568 *

[Bug target/52568] suboptimal __builtin_shuffle on cycles with AVX

2012-03-15 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52568 --- Comment #4 from Jakub Jelinek jakub at gcc dot gnu.org 2012-03-15 23:46:37 UTC --- Author: jakub Date: Thu Mar 15 23:46:34 2012 New Revision: 185447 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=185447 Log: PR target/52568 *

[Bug target/52593] Builtin sqrt on x86 is not correctly rounded

2012-03-15 Thread bugdal at aerifal dot cx
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52593 --- Comment #4 from Rich Felker bugdal at aerifal dot cx 2012-03-15 23:53:51 UTC --- Of course. This bug is 387-math-specific.

[Bug c++/52596] New: internal compiler error: in lvalue_kind, at cp/tree.c:153

2012-03-15 Thread jason at cornsyrup dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52596 Bug #: 52596 Summary: internal compiler error: in lvalue_kind, at cp/tree.c:153 Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/52597] New: [C++11] missing diagnostics for invalid use of non-static member function in decltype

2012-03-15 Thread hstong at ca dot ibm.com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52597 Bug #: 52597 Summary: [C++11] missing diagnostics for invalid use of non-static member function in decltype Classification: Unclassified Product: gcc Version: 4.6.0

[Bug c++/52596] [C++11] internal compiler error: in lvalue_kind, at cp/tree.c:153

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52596 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Summary|internal compiler error: in |[C++11]

[Bug c++/52596] [4.7 Regression] [C++11] internal compiler error: in lvalue_kind, at cp/tree.c:153

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

[Bug c++/52596] [4.7 Regression] [C++11] internal compiler error: in lvalue_kind, at cp/tree.c:153

2012-03-15 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52596 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Keywords|

[Bug go/52583] Several new go testsuite failues on Solaris

2012-03-15 Thread ian at airs dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52583 --- Comment #6 from Ian Lance Taylor ian at airs dot com 2012-03-16 03:18:46 UTC --- Thanks for looking at this. The first step is to run readelf --debug=line FILE to make sure that the line number information is recorded correctly. Which of

[Bug target/52479] SH Target: SH4A DFmode fsca tests failing

2012-03-15 Thread kkojima at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52479 --- Comment #3 from Kazumoto Kojima kkojima at gcc dot gnu.org 2012-03-16 03:21:08 UTC --- There is no concrete definition of -ffast-math and users will have different expectations. Numerical programs for astrodynamics may expect precisions even

[Bug c/52598] New: internal compiler error: in based_loc_descr, at dwarf2out.c:13636

2012-03-15 Thread tony at bakeyournoodle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52598 Bug #: 52598 Summary: internal compiler error: in based_loc_descr, at dwarf2out.c:13636 Classification: Unclassified Product: gcc Version: 4.6.3 Status: UNCONFIRMED