[Bug java/42409] org.eclipse.jdt.internal.compiler.batch.GCCMain not found

2010-01-03 Thread jlpoole at pon dot net
--- Comment #7 from jlpoole at pon dot net 2010-01-04 01:51 --- Thank you. I've updated trunk to Revision: 155601. Wiped out build and am running make (it will take a few days). I'll update with my results. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42409

[Bug target/42601] New: Simplify code to address function static variables with option -fpic

2010-01-03 Thread carrot at google dot com
Compile following code with options -mthumb -fpic -Os, int foo(int j) { static int i; int t = i; i = j; return t; } GCC generates: foo: ldr r3, .L2 // A ldr r2, .L2+4 // B .LPIC0: add r3, pc// C add r3, r3, r2// D

[Bug libstdc++/42600] istream.eof() returns wrong value after reading bool

2010-01-03 Thread paolo dot carlini at oracle dot com
--- Comment #1 from paolo dot carlini at oracle dot com 2010-01-04 02:21 --- This behavior changed as response to libstdc++/37958, I spent way to much time on it, Daniel, believe me ;) Anyway, as an additional data point, SunStudio also agrees with current libstdc++. -- paolo dot ca

[Bug fortran/42568] BLOCKDATA referenced in EXTERNAL not loading from library

2010-01-03 Thread jvdelisle at gcc dot gnu dot org
--- Comment #8 from jvdelisle at gcc dot gnu dot org 2010-01-04 03:25 --- OK, I could not get the script to run for some reason. However, I manually performed the steps in the script: gfortran-4 -c juinit2.f ar -r libex.a juinit2.o gfortran-4 bug.f -L. -lex -o bug ./bug

[Bug fortran/42568] BLOCKDATA referenced in EXTERNAL not loading from library

2010-01-03 Thread jvdelisle at gcc dot gnu dot org
--- Comment #9 from jvdelisle at gcc dot gnu dot org 2010-01-04 03:40 --- With Linux: $ ./bug1.sh ar: creating libex.a COMPILER g77 GOOD LOAD ix2(4)=abcdefghijklmnopqrst ar: creating libex.a COMPILER g95 GOOD LOAD ix2(4)=abcdefghijklmnopqrst ar: creating libex.a COMPILER gfortran G

[Bug fortran/42568] BLOCKDATA referenced in EXTERNAL not loading from library

2010-01-03 Thread jvdelisle at gcc dot gnu dot org
--- Comment #10 from jvdelisle at gcc dot gnu dot org 2010-01-04 03:52 --- Fixed the script on Cygwin: $ ./bug1.sh ar: creating libex.a COMPILER gfortran-4 BAD LOAD ix2(4)= ar: creating libex.a COMPILER gfc BAD LOAD ix2(4)= ar: creating libex.a COMPILER g77 GOOD LOAD ix2(4)=abcdefgh

[Bug driver/42520] lto1 does not see -march and -mtune options with -fuse-linker-plugin

2010-01-03 Thread hjl dot tools at gmail dot com
--- Comment #8 from hjl dot tools at gmail dot com 2010-01-04 04:28 --- Fixed. -- hjl dot tools at gmail dot com changed: What|Removed |Added Status|NEW

[Bug libgomp/42602] New: libgomp.fortran/recursion1.f90 aborted at random

2010-01-03 Thread hjl dot tools at gmail dot com
libgomp.fortran/recursion1.f90 aborted at random on Linux/Core i7. There are --- implicit none integer :: i,s s=0 !$omp parallel do private(i) shared(s) do i=1,10 call sub(i) end do !$omp end parallel do if (s/=55) call abort() contains subroutine sub (n) integer :: n s = s + n

[Bug c++/42603] New: decltype not supported for parent class specifier

2010-01-03 Thread gccbugs at blaggart dot com
file: test.cpp template T make(); struct p {}; struct c : decltype(make()) {}; compilation command: g++ -c -std=c++0x test.cpp output: test.cpp:5: error: expected class-name before 'decltype' test.cpp:5: error: expected '{' before 'decltype' test.cpp:5: error: expected unqualified-id before '{

[Bug fortran/40849] String extraction for translation fails when concatenating with preprocessor symbols

2010-01-03 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2010-01-04 07:31 --- Subject: Bug 40849 Author: burnus Date: Mon Jan 4 07:30:49 2010 New Revision: 155606 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155606 Log: 2009-01-04 Tobias Burnus PR fortran/41872 *

[Bug fortran/41872] wrong-code: Issues with allocatable scalars

2010-01-03 Thread burnus at gcc dot gnu dot org
--- Comment #9 from burnus at gcc dot gnu dot org 2010-01-04 07:31 --- Subject: Bug 41872 Author: burnus Date: Mon Jan 4 07:30:49 2010 New Revision: 155606 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155606 Log: 2009-01-04 Tobias Burnus PR fortran/41872 *

[Bug fortran/42517] -fcheck=recursion does not work with -fopenmp

2010-01-03 Thread burnus at gcc dot gnu dot org
--- Comment #4 from burnus at gcc dot gnu dot org 2010-01-04 07:31 --- Subject: Bug 42517 Author: burnus Date: Mon Jan 4 07:30:49 2010 New Revision: 155606 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155606 Log: 2009-01-04 Tobias Burnus PR fortran/41872 *

[Bug fortran/41872] wrong-code: Issues with allocatable scalars

2010-01-03 Thread burnus at gcc dot gnu dot org
--- Comment #10 from burnus at gcc dot gnu dot org 2010-01-04 07:43 --- Still TO DO: - SAVED local variables are (probably) mishandled - Check whether other things such as allocatable scalar components, (absent/present) optional dummys etc. work. - allocatable-scalar returning functio

[Bug fortran/40849] String extraction for translation fails when concatenating with preprocessor symbols

2010-01-03 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2010-01-04 07:44 --- Should be FIXED now. I did what was proposed in comment 0: Adding the version via %s. -- burnus at gcc dot gnu dot org changed: What|Removed |Added -

[Bug fortran/36161] gfc_error formats are not marked gcc-internal-format in po file

2010-01-03 Thread burnus at gcc dot gnu dot org
--- Comment #15 from burnus at gcc dot gnu dot org 2010-01-04 07:45 --- I believe the patch at http://gcc.gnu.org/ml/fortran/2010-01/msg00023.html should be sufficient. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36161

<    1   2