[Bug c++/25992] New: condition expression and strings literal

2006-01-27 Thread anton dot kirillov at rd-software dot com
void foo( char* ); int main() { foo( 0 ? a : b ); // } The type of expression (0 ? a : b) is const char[2] but it cannot be transformed to char*, however it works. Why? -- Summary: condition expression and strings literal Product: gcc Version: 3.4.5

[Bug fortran/25669] LBOUND (array), as actual arg,causes fatal error.

2006-01-27 Thread paul dot richard dot thomas at cea dot fr
--- Comment #6 from paul dot richard dot thomas at cea dot fr 2006-01-27 11:04 --- (In reply to comment #5) Confirmed (for now, unless you feel this is an exact dup of bug 18003). I think that it might well be a duplicate but cannot be sure. Paul --

[Bug middle-end/20297] #pragma GCC visibility isn't properly handled for builtin functions

2006-01-27 Thread bero at arklinux dot org
--- Comment #13 from bero at arklinux dot org 2006-01-27 12:24 --- Still seeing this problem w/ current 4.1 branch -- bero at arklinux dot org changed: What|Removed |Added

[Bug c++/25992] conditional expression and strings literal

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-27 12:39 --- earth:~g++ t.cc -pedantic -Wwrite-strings t.cc: In function ‘int main()’: t.cc:5: warning: deprecated conversion from string constant to ‘char*’' -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25992

[Bug c/25993] New: -std= produces incorrect preprocessor output for .S

2006-01-27 Thread aldot at gcc dot gnu dot org
Specifying -std=c99 does not define __ASSEMBLER__ for assembler with preprocessor inputfile (.S): $ cat x.S #ifndef __ASSEMBLER__ extern int func(void); #else .global func .type func,%function .align 4 func: ret .size func,.-func #endif $ gcc -c x.S -o x.o $ gcc -c x.S -o x.o -std=c99

[Bug middle-end/25989] gomp ICE with -O2 and schedule(guided)

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-27 12:50 --- Confirmed, This is obvious invalid gimple: D.1940 = __builtin_GOMP_loop_guided_next (.istart0.2, .iend0.3); if (D.1940) goto L3; else goto L6; L6:; return; L3:; ii = (int) .istart0.2; D.1938 = (int)

[Bug c++/25994] New: Using declarations and base function overloading

2006-01-27 Thread wolfgang dot roehrl at gi-de dot com
Dear all, I would like to post a bug report for the GNU C/C++ compiler 3.3-e500. We use the compiler to generate code for a PowerPC processor. Used invokation line for the GNU C++ compiler: ccppc -c -x c++ -ansi -Wall -Werror -mcpu=8540 -fverbose-asm -mbig -fmerge-templates -mmultiple

[Bug c++/25994] Using declarations and base function overloading

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-27 12:53 --- In 4.0, I get a different error message: t.cc:16: error: using declaration ‘using B2::f’ conflicts with a previous using declaration -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25994

[Bug c++/25994] Using declarations and base function overloading

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-27 12:55 --- Hmm, This might be because we still have some ARM (pre-standard) based using semantics implemented and not the standard C++ ones. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25994

[Bug middle-end/25990] gomp ICE with -fopenmp and -O2

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-27 12:58 --- This is a GC failure: #0 ggc_set_mark (p=0xafafafafafafafaf) at /home/pinskia/src/checkin/trunk/gcc/ggc-page.c:588 #1 0x00620268 in gt_ggc_mx_basic_block_def (x_p=Variable x_p is not available. ) at

[Bug c++/25995] New: switch/case does not detect invalid enum values if default-case is used

2006-01-27 Thread sven dot bornemann at materna dot de
The following code is compiled without warnings, in spite of 4711 not being defined by enum. If the default-case will be omitted, the expected warning appears. int main(int argc, char** argv) { enum Enum { a }; Enum test = a; switch(test) { case 4711: break;

[Bug c++/25992] conditional expression and strings literal

2006-01-27 Thread anton dot kirillov at rd-software dot com
--- Comment #2 from anton dot kirillov at rd-software dot com 2006-01-27 13:12 --- (In reply to comment #1) earth:~g++ t.cc -pedantic -Wwrite-strings t.cc: In function ‘int main()’: t.cc:5: warning: deprecated conversion from string constant to ‘char*’' Conversion from string

[Bug c++/25994] Using declarations and base function overloading

2006-01-27 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2006-01-27 13:40 --- Confirmed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25983] [gomp] transient ICE, c++

2006-01-27 Thread tbptbp at gmail dot com
--- Comment #2 from tbptbp at gmail dot com 2006-01-27 13:51 --- Woops, that ICE wasn't in trunk but the gomp branch. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25983

[Bug c++/25995] switch/case does not detect invalid enum values if default-case is used

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-27 13:57 --- Why do you think we should warn here? The enum is promoted to an int by the C/C++ standard for switch. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25995

[Bug c/25995] switch/case does not detect invalid enum values if default-case is used

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-27 14:03 --- Never mind, I see what you mean now, I was too tired when I first read this bug. Confirmed. the default label is causing many things to be ignored. -- pinskia at gcc dot gnu dot org changed: What

[Bug middle-end/25990] gomp ICE with -fopenmp

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 14:09 --- You can reproduce this with -std=c99 -fopenmp --param ggc-min-expand=0 --param ggc-min-heapsize=0 -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/25990] gomp ICE with -fopenmp

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-01-27 14:11 --- Reducing. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25990

[Bug c++/25992] conditional expression and strings literal

2006-01-27 Thread anton dot kirillov at rd-software dot com
--- Comment #4 from anton dot kirillov at rd-software dot com 2006-01-27 14:20 --- (In reply to comment #3) I have not looked into the standard yet but if GCC's warning message is correct this is valid but deprecated code which allows for a compiler to accept it or not.

[Bug middle-end/25990] gomp ICE with -fopenmp

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-01-27 14:22 --- Reduced testcase: __strcspn_c2 (__const char *__s, int __reject1, int __reject2) { int m = 1,n = 1,s = 1; int DD,EE,num_s; int m_max = 99; int n_max = 00; for ( n = 1 ; n = 99 ; n++ ) for ( m = 1 ; m =

[Bug c++/25874] [gomp branch] ICE in calc_dfs_tree()

2006-01-27 Thread dnovillo at gcc dot gnu dot org
--- Comment #3 from dnovillo at gcc dot gnu dot org 2006-01-27 14:26 --- Mine. -- dnovillo at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25992] conditional expression and strings literal

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 13:59 --- I have not looked into the standard yet but if GCC's warning message is correct this is valid but deprecated code which allows for a compiler to accept it or not. --

[Bug bootstrap/25987] insn-automata.c:2433: warning: implicit declaration of function 'hppa_fpstore_bypass_p'

2006-01-27 Thread danglin at gcc dot gnu dot org
--- Comment #6 from danglin at gcc dot gnu dot org 2006-01-27 14:28 --- Fixed. -- danglin at gcc dot gnu dot org changed: What|Removed |Added

[Bug libgomp/25984] libgomp installs include/omp_lib.f90 even if Fortran is not built

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 14:36 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25973] [4.0/4.1/4.2 Regression] Wrong warning: control reaches end of non-void function

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-27 14:52 --- The problem here is that the C++ front-end produces IF_STMT and not COND_EXPR. I am going to mark this as a memory hog as it does cause excessive trees for bigger testcases. -- pinskia at gcc dot gnu dot org

[Bug middle-end/25990] gomp ICE with -fopenmp

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #6 from reichelt at gcc dot gnu dot org 2006-01-27 15:18 --- Even simpler testcase: == void foo() { int i; for ( i=0; i1; i++ ) ; for ( i=0; i1; i++ ) ; for ( i=0; i1; i++ ) ; for ( i=0; i1; i++ ) ; for ( i=0; i1; i++

[Bug c++/25873] [gomp] ICE in verify_eh_throw_stmt_node

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #1 from reichelt at gcc dot gnu dot org 2006-01-27 15:33 --- Fixed with the recent merge from mainline. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25874] [gomp branch] ICE in calc_dfs_tree()

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #4 from reichelt at gcc dot gnu dot org 2006-01-27 15:45 --- Even shorter C-testcase (compile with -fopenmp -O): void foo(); inline void bar() { int i; for ( i=0; i1; ++i ) #pragma omp parallel foo(); } void baz() { #pragma omp

[Bug c++/25873] [gomp] ICE in verify_eh_throw_stmt_node

2006-01-27 Thread dnovillo at gcc dot gnu dot org
--- Comment #2 from dnovillo at gcc dot gnu dot org 2006-01-27 15:49 --- This is actually: 2006-01-26 Diego Novillo [EMAIL PROTECTED] * tree-cfg.c (move_block_to_fn): Call remove_stmt_from_eh_region for each moved statement. which I need to move to trunk when the

[Bug c++/25983] [gomp] transient ICE, c++

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #3 from reichelt at gcc dot gnu dot org 2006-01-27 16:00 --- *** This bug has been marked as a duplicate of 25873 *** -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25873] [gomp] ICE in verify_eh_throw_stmt_node

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #3 from reichelt at gcc dot gnu dot org 2006-01-27 16:00 --- *** Bug 25983 has been marked as a duplicate of this bug. *** -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/25996] New: [gomp] ICE on undefined iteration variable

2006-01-27 Thread reichelt at gcc dot gnu dot org
Compiling the following invalid testcase with -fopenmp causes an ICE: === void foo() { #pragma omp parallel for for ( i=0; i1; ++i ) ; } === bug.c: In function 'foo': bug.c:4: error: 'i' undeclared (first use in this function)

[Bug c/25996] [gomp] ICE on undefined iteration variable

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-27 16:08 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug other/25982] writer written by write_writer doesn't quote where necessary

2006-01-27 Thread amylaar at gcc dot gnu dot org
--- Comment #1 from amylaar at gcc dot gnu dot org 2006-01-27 16:17 --- Fixed by: r110275 | zack | 2006-01-26 21:21:42 + (Thu, 26 Jan 2006) | 11 lines * genconditions.c (write_header): In generated code, #ifdef out all includes and fake declarations, except

[Bug other/25527] [gomp] segfault in main.omp_fn.0 with -O2

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2006-01-27 16:25 --- I can reproduce the problem on x86_64-unknown-linux-gnu with the following testcase: === #includeiostream #includecomplex int main() { std::complexint c; std::cout c

[Bug c++/25997] New: ICE in make_typename_type while parsing member template invocation

2006-01-27 Thread holt-gcc at gholt dot net
The following code causes an ICE. This code is certainly invalid as it stands, though it is derived from something larger which I think is valid. namespace SArray { class ColumnMajor; template typename T, int rank class Array; } template typename T, int rank void xxx(const SArray::ArrayT,

[Bug c++/19253] [3.4/4.0/4.1 regression] bad error message / ICE for invalid template parameter

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #18 from pinskia at gcc dot gnu dot org 2006-01-27 16:31 --- *** Bug 25997 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25997] ICE in make_typename_type while parsing member template invocation

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-27 16:31 --- Fixed in 4.0.3, This is a dup of bug 19253. *** This bug has been marked as a duplicate of 19253 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/25761] -fpic (not -fPIC) does not work with i686-darwin

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 16:43 --- I have a patch. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug other/25527] [gomp] segfault in main.omp_fn.0 with -O2

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #6 from reichelt at gcc dot gnu dot org 2006-01-27 16:47 --- Even shorter testcase: = #includesstream int main() { std::ostringstream s; return 0; } = -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25527

[Bug middle-end/25977] [4.1/4.2 Regression] RSO vs NRV (twice)

2006-01-27 Thread jason at gcc dot gnu dot org
-- jason at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jason at gcc dot gnu dot org |dot org

[Bug target/25998] New: executable generated by f951 doesn't work with 32-bit SUNW,UltraAX-e2 (UltraSPARC-IIe) shared libc_psr.so.1

2006-01-27 Thread alex at milivojevic dot org
This might be a bug in any of the following: - gcc/f951 - gmp - mpfr - Sun system libraries - binutils - UltraSPARC-IIe (not likely, but you never know) Of course, there is always possibility it was just me doing something stupid. If there is any way (or test) to check if bug is in

[Bug testsuite/24962] gcc.target/ia64/20030811-1.c (test for excess errors) fails with -milp32

2006-01-27 Thread sje at cup dot hp dot com
--- Comment #3 from sje at cup dot hp dot com 2006-01-27 17:06 --- This testsuite failure has been fixed on the main line and in the 4.1 branch by using long long instead of just long. The test failure does not occur prior to 4.1 because the test is not run on HP-UX prior to 4.1. --

[Bug target/25998] executable generated by f951 doesn't work with 32-bit SUNW,UltraAX-e2 (UltraSPARC-IIe) shared libc_psr.so.1

2006-01-27 Thread alex at milivojevic dot org
--- Comment #1 from alex at milivojevic dot org 2006-01-27 17:11 --- Created an attachment (id=10743) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10743action=view) test program -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25998

[Bug fortran/25716] FAIL: gfortran.dg/char_result_11.f90 -O (test for excess errors)

2006-01-27 Thread eedelman at gcc dot gnu dot org
--- Comment #18 from eedelman at gcc dot gnu dot org 2006-01-27 17:19 --- Subject: Bug 25716 Author: eedelman Date: Fri Jan 27 17:19:36 2006 New Revision: 110302 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110302 Log: fortran/ 2005-01-27 Erik Edelmann [EMAIL PROTECTED]

[Bug target/25998] executable generated by f951 doesn't work with 32-bit SUNW,UltraAX-e2 (UltraSPARC-IIe) shared libc_psr.so.1

2006-01-27 Thread alex at milivojevic dot org
--- Comment #3 from alex at milivojevic dot org 2006-01-27 17:26 --- I said it might be a bug with gcc. After all, gcc is the only application that doesn't work correctly on this box. I guess maintainers of any other component mentioned (gmp, mpfr, binutils, Sun) can say the same

[Bug other/25527] [gomp] segfault with locale

2006-01-27 Thread reichelt at gcc dot gnu dot org
--- Comment #7 from reichelt at gcc dot gnu dot org 2006-01-27 17:39 --- Even more compact (because an ostringstream contains a locale as member): #includelocale int main() { std::locale L; return 0; } This alredy crashes

[Bug target/25998] executable generated by f951 doesn't work with 32-bit SUNW,UltraAX-e2 (UltraSPARC-IIe) shared libc_psr.so.1

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-27 17:15 --- Why do you think this is a GCC bug? libc_psr is linked in via black magic and not really referenced in the binaries see: http://sourceware.org/ml/binutils/2003-08/msg00343.html --

[Bug target/25960] __gcc_add doesn't handle -0.0L properly

2006-01-27 Thread dje at gcc dot gnu dot org
--- Comment #2 from dje at gcc dot gnu dot org 2006-01-27 17:59 --- The IBM 128-bit extended floating point format is not fully compliant with IEEE 754. It is functioning as designed. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25960

[Bug target/25960] __gcc_add doesn't handle -0.0L properly

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 18:02 --- So closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/25661] Wrong long double to float conversion

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2006-01-27 18:03 --- But this is by design and not a bug in GCC. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/25196] [4.0 Regression] i386: wrong arguments passed

2006-01-27 Thread markus at oberhumer dot com
--- Comment #10 from markus at oberhumer dot com 2006-01-27 18:03 --- What is the status of this bug for gcc 4.0.3 ? According to the thread at http://gcc.gnu.org/ml/gcc-patches/2006-01/msg00542.html it seems it has been approved a while ago. --

[Bug c++/25983] [gomp] transient ICE, c++

2006-01-27 Thread tbptbp at gmail dot com
--- Comment #4 from tbptbp at gmail dot com 2006-01-27 18:04 --- I'm not sure it's a dupe fixed, because it also triggered with exceptions disabled. I don't know if the patch for PR/25873 has been applied to the gomp branch or not, if not please ignore the spam, but with a fresh svn

[Bug c++/25983] [gomp] transient ICE, c++

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-01-27 18:06 --- (In reply to comment #4) I'm not sure it's a dupe fixed, because it also triggered with exceptions disabled. I don't know if the patch for PR/25873 has been applied to the gomp branch or not, if not please

[Bug c++/25983] [gomp] transient ICE, c++

2006-01-27 Thread tbptbp at gmail dot com
--- Comment #6 from tbptbp at gmail dot com 2006-01-27 18:12 --- Subject: Re: [gomp] transient ICE, c++ On 27 Jan 2006 18:06:23 -, pinskia at gcc dot gnu dot org [EMAIL PROTECTED] wrote: That is a dup of bug 25990, then. Technically, it's the other way around ;) Anyway, it's

[Bug fortran/25416] Segmentation fault in gfc_conv_function_call

2006-01-27 Thread uweigand at gcc dot gnu dot org
--- Comment #7 from uweigand at gcc dot gnu dot org 2006-01-27 18:43 --- Thanks for fixing this! Any chance of getting the fix into 4.1, or this is too risky? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25416

[Bug fortran/20845] Module variablle with defualt component needs SAVE attribute.

2006-01-27 Thread kargl at gcc dot gnu dot org
--- Comment #6 from kargl at gcc dot gnu dot org 2006-01-27 19:11 --- I working on a patch for this. -- kargl at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/25998] executable generated by f951 doesn't work with 32-bit SUNW,UltraAX-e2 (UltraSPARC-IIe) shared libc_psr.so.1

2006-01-27 Thread alex at milivojevic dot org
--- Comment #4 from alex at milivojevic dot org 2006-01-27 19:34 --- Some additional info (there's always something else that pops up). Seems the problem is present only on machine where both of the following are true: - processor is UltraSPARC-IIe - uname -i returns SUNW,UltraAX-e2

[Bug fortran/25324] Wrong DW_TAG_compile_unit generated when compiling preprocessed fortran code

2006-01-27 Thread jakub at gcc dot gnu dot org
--- Comment #2 from jakub at gcc dot gnu dot org 2006-01-27 20:02 --- Subject: Bug 25324 Author: jakub Date: Fri Jan 27 20:01:55 2006 New Revision: 110304 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110304 Log: PR fortran/25324 * Make-lang.in

[Bug fortran/25324] Wrong DW_TAG_compile_unit generated when compiling preprocessed fortran code

2006-01-27 Thread jakub at gcc dot gnu dot org
--- Comment #3 from jakub at gcc dot gnu dot org 2006-01-27 20:04 --- Subject: Bug 25324 Author: jakub Date: Fri Jan 27 20:03:59 2006 New Revision: 110305 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110305 Log: PR fortran/25324 * Make-lang.in

[Bug c++/25999] New: compiler loses extern C for function after #pragma weak

2006-01-27 Thread metcalf at lcs dot mit dot edu
The following short program generates the mangled symbol _Z3Foov instead of the expected Foo when built with -DBUG. Without -DBUG and the #pragma weak Random_Symbol line, or if using g++ 3.2.3, the expected thing happens. extern C { void Foo(); } #ifdef BUG #pragma weak Random_Symbol #endif

[Bug target/25864] Enable IBM long double format in 32-bit PowerPC Linux

2006-01-27 Thread jakub at gcc dot gnu dot org
--- Comment #7 from jakub at gcc dot gnu dot org 2006-01-27 19:59 --- Subject: Bug 25864 Author: jakub Date: Fri Jan 27 19:59:49 2006 New Revision: 110303 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110303 Log: 2006-01-27 Jakub Jelinek [EMAIL PROTECTED] PR

[Bug c++/25979] [4.0/4.1/4.2 Regression] incorrect codegen for conditional [SVO issue]

2006-01-27 Thread jason at gcc dot gnu dot org
-- jason at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jason at gcc dot gnu dot org |dot org

[Bug c++/25999] [4.0/4.1/4.2 Regression] compiler loses extern C for function after #pragma weak

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-27 20:13 --- Confirmed, on the mainline too. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20833] LEN of a null slice and temporaries don't mix up well

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 20:40 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug fortran/23815] Add -byteswapio flag

2006-01-27 Thread tkoenig at gcc dot gnu dot org
--- Comment #29 from tkoenig at gcc dot gnu dot org 2006-01-27 20:40 --- Updated patch, which also implements a compile-time option. Hopefully, this will be reviewed some day. -- tkoenig at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24866] internal compiler error

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-27 20:46 --- I now get: end module test_module 1 Internal Error at (1): write_symbol(): bad module symbol 'UCS-2BE//' -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug fortran/18769] ICE in gfc_conv_array_initializer with array initialization with transfer

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-01-27 20:54 --- transfer could be converted over to use VIEW_CONVERT_EXPR of the constant but then again this is in non trans part of the fortran front-end. -- pinskia at gcc dot gnu dot org changed: What

[Bug fortran/25716] FAIL: gfortran.dg/char_result_11.f90 -O (test for excess errors)

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #19 from pinskia at gcc dot gnu dot org 2006-01-27 20:59 --- Fixed in 4.1.0. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/19303] Unformatted record header is 4-bytes on 32-bit targets

2006-01-27 Thread tkoenig at gcc dot gnu dot org
--- Comment #19 from tkoenig at gcc dot gnu dot org 2006-01-27 21:17 --- (In reply to comment #18) Created an attachment (id=10564) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10564action=view) [edit] patch against gcc-4.1-20051223 As requested, I am posting Rob's patch

[Bug fortran/25964] [4.1/4.2 Regression] NIST regression on fm311.f

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-01-27 21:20 --- Subject: Bug 25964 Author: pault Date: Fri Jan 27 21:20:12 2006 New Revision: 110307 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110307 Log: 2005-01-27 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/24327] Does not detect duplicate symbol names in contains block

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:01 --- Fixed in trunk and, in about 15 minutes, on 4.1 Thanks, Steve, for noticing that I had accidentally fixed this. Paul -- pault at gcc dot gnu dot org changed: What|Removed

[Bug fortran/25084] Interface for assumed length character function allowed

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25084 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20852] *-length character function may not be recursive

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 20852 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20881] should check interfaces for lgobal procedures

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 20881 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25964] [4.1/4.2 Regression] NIST regression on fm311.f

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25964 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25085] Array valued assumed length character function allowed

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25085 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25710] accepts call to function

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #2 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25710 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug c++/25625] [4.0/4.1/4.2 Regression] Fails to compile C++ code when -frepo is specified.

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #11 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25625 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25416] Segmentation fault in gfc_conv_function_call

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #8 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25416 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/23308] named common block confused as procedure - runtime segfault

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #12 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 23308 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/24276] Components of a derived type array not passed as an array

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 24276 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25086] Pointer valued assumed length character function allowed

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25086 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25538] internal compiler error: in build_function_decl, at fortran/trans-decl.c:1130

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25538 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25901] [4.2 Regression] overloaded function is rejected

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:16 --- Subject: Bug 25901 Author: pault Date: Fri Jan 27 22:16:04 2006 New Revision: 110310 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 Log: 2005-01-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25084] Interface for assumed length character function allowed

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:21 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20852] *-length character function may not be recursive

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:22 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25085] Array valued assumed length character function allowed

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:23 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25086] Pointer valued assumed length character function allowed

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:23 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/24762] [killloop-branch] code motion of non-invariant expressions with hard registers.

2006-01-27 Thread zadeck at gcc dot gnu dot org
--- Comment #18 from zadeck at gcc dot gnu dot org 2006-01-27 22:23 --- Subject: Bug 24762 Author: zadeck Date: Fri Jan 27 22:23:32 2006 New Revision: 110312 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110312 Log: 2006-01-27 Daniel Berlin [EMAIL PROTECTED]

[Bug fortran/25416] Segmentation fault in gfc_conv_function_call

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #9 from pault at gcc dot gnu dot org 2006-01-27 22:24 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

Re: [Bug c++/25625] [4.0/4.1/4.2 Regression] Fails to compile C++ code when -frepo is specified.

2006-01-27 Thread Gabriel Dos Reis
pault at gcc dot gnu dot org [EMAIL PROTECTED] writes: [...] | URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 | Log: | 2005-01-28 Paul Thomas [EMAIL PROTECTED] | | PR fortran/25964 | * resolve.c (resolve_function): Exclude statement functions from | global

[Bug c++/25625] [4.0/4.1/4.2 Regression] Fails to compile C++ code when -frepo is specified.

2006-01-27 Thread gdr at cs dot tamu dot edu
--- Comment #12 from gdr at cs dot tamu dot edu 2006-01-27 22:27 --- Subject: Re: [4.0/4.1/4.2 Regression] Fails to compile C++ code when -frepo is specified. pault at gcc dot gnu dot org [EMAIL PROTECTED] writes: [...] | URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=110310 |

[Bug c++/25625] [4.0/4.1/4.2 Regression] Fails to compile C++ code when -frepo is specified.

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #13 from pault at gcc dot gnu dot org 2006-01-27 22:29 --- Can someone explain me why a fortran commit shows up as a C++ releated commit? -- Gaby 'cos I seem to have goofed on a couple of PR numbers. Sorry. Paul T --

[Bug fortran/20881] should check interfaces for lgobal procedures

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-01-27 22:29 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/23308] named common block confused as procedure - runtime segfault

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #13 from pault at gcc dot gnu dot org 2006-01-27 22:30 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25538] internal compiler error: in build_function_decl, at fortran/trans-decl.c:1130

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-01-27 22:31 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25710] accepts call to function

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-01-27 22:33 --- Fixed on trunk and 4.1 Paul Andrew, I have not forgotten the type checking - I am working on it for internal procedures first; gfortran might be OK but the standard is quite convoluted here and I have not got it

[Bug fortran/24276] Components of a derived type array not passed as an array

2006-01-27 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-01-27 22:34 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25324] Wrong DW_TAG_compile_unit generated when compiling preprocessed fortran code

2006-01-27 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-01-27 23:10 --- Fixed in 4.1.0. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

  1   2   >