[Bug middle-end/28160] New: Bogus size of array 'foo' is too large error with -mms-bitfields

2006-06-25 Thread kkojima at gcc dot gnu dot org
Several g++ tests in tmpdir-g++.dg-struct-layout-1 fail during the compilation with the error message like error: size of array 'foo' is too large with -mms-bitfields. A reduced testcase is typedef long int along __attribute__((aligned (32))); struct S { unsigned char a; along d:130;

[Bug middle-end/28161] New: Wrong bit field layout with -mms-bitfields

2006-06-25 Thread kkojima at gcc dot gnu dot org
Several g++ tests in tmpdir-g++.dg-struct-layout-1 fail with the execution error. A reduced testcase is extern C void abort (void); struct S { long long d:23; int e:32; int f:32; } a; int main (void) { a.e = -3; a.f = 1; if (a.e != -3) abort (); return 0; } which shows that

[Bug target/28150] ICE in reload_cse_simplify_operands, at postreload.c:394

2006-06-25 Thread pluto at agmk dot net
--- Comment #3 from pluto at agmk dot net 2006-06-25 08:47 --- (In reply to comment #2) How did you configure GCC becase having TFmode there sounds like you configured to have 128bit long double to be default. $ gcc -v Reading specs from /usr/lib/gcc/ppc-pld-linux/4.1.2/specs

[Bug c/28162] New: ice on valid code

2006-06-25 Thread dcb314 at hotmail dot com
I just tried to compile the attached source code with compiler flag -O3. GNU C compiler version 4.2 snapshot 20060624 said [EMAIL PROTECTED]:~/gnu/42-20060617/bugs ~/gnu/42-20060624/results/bin/gcc -O3 bug18.c bug18.c: In function 'Speech_Encode_Frame_init': bug18.c:24528: warning: passing

[Bug c/28162] ice on valid code

2006-06-25 Thread dcb314 at hotmail dot com
--- Comment #1 from dcb314 at hotmail dot com 2006-06-25 09:28 --- Created an attachment (id=11744) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11744action=view) C source code -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28162

[Bug c/28162] ice on valid code

2006-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-06-25 10:01 --- min is not less than max: (gdb) call debug_tree (min) integer_cst 0xa78f57b0 type integer_type 0xa7bf42e0 unsigned int constant invariant 4294966724 (gdb) call debug_tree (max) integer_cst 0xa7be2498 type

[Bug tree-optimization/28162] ICE in set_value_range, at tree-vrp.c:157

2006-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2006-06-25 10:30 --- Reduced testcase, still needs -O3 (and checking enabled): void Lag_max_wght(float corr[], long wght_flg) { float t0, max; const float *ww; long i; if ( wght_flg 0 ) { for ( i = 143; i =

[Bug tree-optimization/27937] [4.2 Regression] Ada bootstrap failure on Solaris 10/x86

2006-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2006-06-25 10:58 --- Is there a testcase for this bug that can be examined on more common host/target systems? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27937

[Bug c++/28051] [4.0/4.1/4.2 regression] ICE on invalid conversion operator

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #3 from lmillward at gcc dot gnu dot org 2006-06-25 11:07 --- Subject: Bug 28051 Author: lmillward Date: Sun Jun 25 11:07:05 2006 New Revision: 114985 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114985 Log: PR c++/28051 * mangle.c

[Bug c++/28051] [4.0/4.1 regression] ICE on invalid conversion operator

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #4 from lmillward at gcc dot gnu dot org 2006-06-25 11:07 --- Fixed on mainline. -- lmillward at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/28054] [4.2 regression] ICE with friend declaration of invalid bitfield

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #1 from lmillward at gcc dot gnu dot org 2006-06-25 11:28 --- Subject: Bug 28054 Author: lmillward Date: Sun Jun 25 11:28:01 2006 New Revision: 114986 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114986 Log: PR c++/28054 * decl2.c (grokbitfield):

[Bug c++/28054] [4.2 regression] ICE with friend declaration of invalid bitfield

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #2 from lmillward at gcc dot gnu dot org 2006-06-25 11:28 --- Fixed. -- lmillward at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/28162] ICE in set_value_range, at tree-vrp.c:157

2006-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-06-25 12:02 --- .003.original is already wrong: t0 = *((float *) (i * 0fffc) + corr) * (float) *ww-- ; we ask fold to fold (unsigned)-i * 4U which continues to ask fold to fold i * -4U (buggy already), which is from

[Bug fortran/28163] New: Calling libgfortran's copy_string is inefficient

2006-06-25 Thread fxcoudert at gcc dot gnu dot org
Currently, string assignments are done via calls to _gfortran_copy_string, which is a simple wrapper around memmove/memset: void copy_string (GFC_INTEGER_4 destlen, char * dest, GFC_INTEGER_4 srclen, const char * src) { if (srclen = destlen) { /* This will truncate if too

[Bug fortran/28163] Calling libgfortran's copy_string is inefficient

2006-06-25 Thread fxcoudert at gcc dot gnu dot org
--- Comment #1 from fxcoudert at gcc dot gnu dot org 2006-06-25 12:31 --- Created an attachment (id=11746) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11746action=view) Patch described in the bug report -- fxcoudert at gcc dot gnu dot org changed: What

[Bug target/27827] gcc 4 produces worse x87 code on all platforms than gcc 3

2006-06-25 Thread whaley at cs dot utsa dot edu
--- Comment #17 from whaley at cs dot utsa dot edu 2006-06-25 13:17 --- OK, thanks for the reply. I will assume gcc 4 won't be fixed in the near future. My guess is this will make icc an easier compiler for users, which I kind of hate, which is why I worked as much as I did on this

[Bug c++/28164] New: g++ core when init a struct

2006-06-25 Thread tiramisu dot xc at gmail dot com
using ACE 5.4.1 command line:g++ -I/usr/local/ACE_wrappers test.cpp gcc version 3.4.4 20050721 (Red Hat 3.4.4-2) source: #include ace/INET_Addr.h struct ERR { ACE_INET_Addr err[10][2]; /// right: int err[10][2]; or ACE_INET_Addr [10]; }; ERR temp = {0}; int main() { return 0; } --

[Bug c++/28164] g++ core when init a struct

2006-06-25 Thread tiramisu dot xc at gmail dot com
--- Comment #1 from tiramisu dot xc at gmail dot com 2006-06-25 13:38 --- Created an attachment (id=11747) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11747action=view) /tmp/cciuGwmP.out -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28164

[Bug fortran/27554] Strange assembler produced

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 27554 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25056] non-PURE function should not be a valid argument

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 25056 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20874] elemental function ought to be scalar

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 20874 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25073] CASEs overlap

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #10 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 25073 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20867] statement function args not given implicit type early enough

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 20867 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/28119] forall_stmt ; stmt gives an internal error

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #2 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 28119 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/22038] Forall with mask broken

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #9 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 22038 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25072] non PURE function used in For-All

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #8 from pault at gcc dot gnu dot org 2006-06-25 15:11 --- Subject: Bug 25072 Author: pault Date: Sun Jun 25 15:11:02 2006 New Revision: 114987 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114987 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug rtl-optimization/26244] [4.2 Regression] FAIL: gcc.c-torture/execute/builtin-bitops-1.c execution, -O3 -fomit-frame-pointer -funroll-loops

2006-06-25 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #21 from dave at hiauly1 dot hia dot nrc dot ca 2006-06-25 15:32 --- Subject: Re: [4.2 Regression] FAIL: gcc.c-torture/execute/builtin-bitops-1.c execution, -O3 -fomit-frame-pointer -funroll-loops I looked at the documentation for lshiftrt, but it doesn't say whether

[Bug tree-optimization/28162] [4.2 Regression] ICE in set_value_range, at tree-vrp.c:157

2006-06-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug c++/27821] [4.0/4.1 regression] ICE with invalid ptr-to-member

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #4 from lmillward at gcc dot gnu dot org 2006-06-25 17:00 --- Subject: Bug 27821 Author: lmillward Date: Sun Jun 25 17:00:43 2006 New Revision: 114988 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114988 Log: PR c++/27821 * decl.c (grokdeclarator):

[Bug c++/27821] [4.0/4.1 regression] ICE with invalid ptr-to-member

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #5 from lmillward at gcc dot gnu dot org 2006-06-25 17:05 --- Subject: Bug 27821 Author: lmillward Date: Sun Jun 25 17:05:22 2006 New Revision: 114989 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114989 Log: PR c++/27821 * decl.c (grokdeclarator):

[Bug c++/27821] [4.0/4.1 regression] ICE with invalid ptr-to-member

2006-06-25 Thread lmillward at gcc dot gnu dot org
--- Comment #6 from lmillward at gcc dot gnu dot org 2006-06-25 17:06 --- Fixed in 4.1.2 and 4.0.4. -- lmillward at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/28151] [4.1/4.2 Regression] ICE with complex math

2006-06-25 Thread ebotcazou at gcc dot gnu dot org
(const_binop): Be prepared for self returning zero. Simplify code handling complex values. Added: trunk/gcc/testsuite/gcc.c-torture/compile/20060625-1.c Modified: trunk/gcc/ChangeLog trunk/gcc/fold-const.c trunk/gcc/testsuite/ChangeLog -- http://gcc.gnu.org/bugzilla

[Bug middle-end/28151] [4.1/4.2 Regression] ICE with complex math

2006-06-25 Thread ebotcazou at gcc dot gnu dot org
(const_binop): Be prepared for self returning zero. Simplify code handling complex values. Added: branches/gcc-4_1-branch/gcc/testsuite/gcc.c-torture/compile/20060625-1.c Modified: branches/gcc-4_1-branch/gcc/ChangeLog branches/gcc-4_1-branch/gcc/fold-const.c branches/gcc-4_1

[Bug middle-end/28151] [4.1/4.2 Regression] ICE with complex math

2006-06-25 Thread ebotcazou at gcc dot gnu dot org
--- Comment #12 from ebotcazou at gcc dot gnu dot org 2006-06-25 17:19 --- Fixed everywhere. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25056] non-PURE function should not be a valid argument

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 25056 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20874] elemental function ought to be scalar

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 20874 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/27554] Strange assembler produced

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 27554 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20867] statement function args not given implicit type early enough

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 20867 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25073] CASEs overlap

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #11 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 25073 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/28119] forall_stmt ; stmt gives an internal error

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 28119 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/22038] Forall with mask broken

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #10 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 22038 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25072] non PURE function used in For-All

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #9 from pault at gcc dot gnu dot org 2006-06-25 18:08 --- Subject: Bug 25072 Author: pault Date: Sun Jun 25 18:08:13 2006 New Revision: 114994 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=114994 Log: 2006-06-25 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/25056] non-PURE function should not be a valid argument

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-06-25 18:09 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20867] statement function args not given implicit type early enough

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-06-25 18:10 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20874] elemental function ought to be scalar

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2006-06-25 18:11 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25073] CASEs overlap

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #12 from pault at gcc dot gnu dot org 2006-06-25 18:11 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/27554] Strange assembler produced

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-06-25 18:12 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/22038] Forall with mask broken

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #11 from pault at gcc dot gnu dot org 2006-06-25 18:12 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/28119] forall_stmt ; stmt gives an internal error

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-06-25 18:13 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25072] non PURE function used in For-All

2006-06-25 Thread pault at gcc dot gnu dot org
--- Comment #10 from pault at gcc dot gnu dot org 2006-06-25 18:13 --- Fixed on trunk and 4.1 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/28164] g++ core when init a struct

2006-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-06-25 19:55 --- Fixed in 4.0.0 -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/27827] gcc 4 produces worse x87 code on all platforms than gcc 3

2006-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #18 from rguenth at gcc dot gnu dot org 2006-06-25 20:05 --- Unfortunately we don't have infrastructure for performance regression tests. Btw. did you check what happens if you do not unroll the innermost loop manually but let -funroll-loops do it? For me the performance

[Bug middle-end/27950] [4.2 regression] undefined reference when compiling valgrind 3.2.0

2006-06-25 Thread steven at gcc dot gnu dot org
-- steven at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug middle-end/27889] [4.1/4.2 Regression] ICE on complex assignment in nested function

2006-06-25 Thread roger at eyesopen dot com
--- Comment #14 from roger at eyesopen dot com 2006-06-26 00:24 --- The problem appears to be that DECL_COMPLEX_GIMPLE_REG_P is not getting set on the declarations correctly. The VAR_DECLs that are operands to the additions don't have DECL_COMPLEX_GIMPLE_REG_P set, so fail the

[Bug target/27827] gcc 4 produces worse x87 code on all platforms than gcc 3

2006-06-25 Thread whaley at cs dot utsa dot edu
--- Comment #19 from whaley at cs dot utsa dot edu 2006-06-26 00:55 --- Thanks for the info. I'm sorry to hear that no performance regression tests are done, but I guess it kind of explains why these problems reoccur :) As to not unrolling, the fully unrolled case is almost always

[Bug preprocessor/28165] New: _Pragma GCC system_header broken

2006-06-25 Thread sabre at nondot dot org
In a main translation unit, this: #pragma GCC system_header results in this warning: warning: #pragma system_header ignored outside include file However, this doesn't: _Pragma (GCC system_header) In fact, this causes GCC to emit a line marker switching the main translation unit to look like a

[Bug c/28166] New: internal compiler error when -finstrument-functions on an inline function.

2006-06-25 Thread murdo at catapult dot com
Internal compiler error when compiling an inline static function with -finstrument-functions and -finline-functions, even if the function has the no_instrument_function attribute. No error occurs if inlining is turned off or an addressable version of the function is provided with

[Bug c/28166] internal compiler error when -finstrument-functions on an inline function.

2006-06-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-06-26 02:42 --- This was fixed in 4.0.0 and this is also a dup of bug 16780. *** This bug has been marked as a duplicate of 16780 *** -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug c/16780] [3.4 regression] ICE with -finstrument-functions -funit-at-a-time -finline -finline-functions

2006-06-25 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2006-06-26 02:42 --- *** Bug 28166 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/28166] internal compiler error when -finstrument-functions on an inline function.

2006-06-25 Thread murdo at catapult dot com
--- Comment #2 from murdo at catapult dot com 2006-06-26 02:43 --- Created an attachment (id=11754) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11754action=view) Minimum failing case plus gcc version, command, output and .i file --