[Bug c++/23278] SJLJ-exceptions broken

2006-03-10 Thread bmj at us dot ibm dot com


--- Comment #13 from bmj at us dot ibm dot com  2006-03-11 07:10 ---
(In reply to comment #12)
> No testcase in over 3 months of asking so closing as invalid.
> 

I am seeing something similar to this.  Here is the stack trace I get.
Can anyone explain what the issue is here?  (it SEGVs in parse_ldsa_header).

#0  0x405b9f1e in parse_lsda_header () from /usr/lib/libstdc++.so.5
No symbol table info available.
#1  0x405ba21c in __gxx_personality_v0 () from /usr/lib/libstdc++.so.5
No symbol table info available.
#2  0x406083f4 in _Unwind_RaiseException () from /lib/libgcc_s.so.1
No symbol table info available.
#3  0x405ba6e5 in __cxa_throw () from /usr/lib/libstdc++.so.5
No symbol table info available.
#4  0x42ac53e0 in ibm::cpa_comm::SnmpClient::snmpGet (this=0x43a01120,
[EMAIL PROTECTED]) at SnmpClient.cpp:203
errStream = { = {<> = {}, <> = {}, }, 
  _M_stringbuf = {<> = {}, _M_string = {static npos =
4294967295, 
  _M_dataplus = {> = {}, 
_M_p = 0x46740d1c "comm/SnmpClient.cpp : 197 
TYPE=\"string\">\n\n\n\n\n\nhttp://gcc.gnu.org/bugzilla/show_bug.cgi?id=23278



[Bug java/26638] Mauve crypto test failures

2006-03-10 Thread konqueror at gmx dot de


--- Comment #1 from konqueror at gmx dot de  2006-03-11 07:03 ---
I can confirm the same bug for GCJ 4.1 branch with backported GNU
crypto stuff.


-- 

konqueror at gmx dot de changed:

   What|Removed |Added

 CC||konqueror at gmx dot de


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638



[Bug target/24753] FreeBSD make buildworld failure

2006-03-10 Thread pinskia at gcc dot gnu dot org


--- Comment #3 from pinskia at gcc dot gnu dot org  2006-03-11 06:19 ---
Did not read instructions for filing a bug report and no feedback in 3 months
so closing as invalid.


-- 

pinskia at gcc dot gnu dot org changed:

   What|Removed |Added

 Status|WAITING |RESOLVED
 Resolution||INVALID


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24753



[Bug bootstrap/22408] make install fails after --enable-bootstrap=lean enabled bootstrap

2006-03-10 Thread pinskia at gcc dot gnu dot org


--- Comment #4 from pinskia at gcc dot gnu dot org  2006-03-11 06:18 ---
Fixed in 4.2.0 for sure so closing as such.


-- 

pinskia at gcc dot gnu dot org changed:

   What|Removed |Added

 Status|WAITING |RESOLVED
 Resolution||FIXED
   Target Milestone|--- |4.2.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22408



[Bug middle-end/24429] Remove unnecessary lhd_* hooks where a corresponding hook_* exists

2006-03-10 Thread pinskia at gcc dot gnu dot org


--- Comment #2 from pinskia at gcc dot gnu dot org  2006-03-11 05:22 ---
Any news about this patch?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24429



[Bug crypto/23768] doFinal() methods in javax.crypto.Cipher incorrectly resetting cipher state

2006-03-10 Thread cvs-commit at developer dot classpath dot org


--- Comment #2 from cvs-commit at developer dot classpath dot org  
2006-03-11 05:21 ---
Subject: Bug 23768

CVSROOT:/cvsroot/classpath
Module name:classpath
Branch: jessie-nio
Changes by: Casey Marshall <[EMAIL PROTECTED]> 06/03/11 05:15:47

Modified files:
.  : ChangeLog-jessie-nio 
javax/crypto   : Cipher.java CipherSpi.java 

Log message:
2006-03-10  Casey Marshall  <[EMAIL PROTECTED]>

Fixes PR 23768.
* javax/crypto/Cipher.java (doFinal, doFinal, doFinal): don't
reset `state.'
(doFinal, update): new methods.
(init, init, init, init): initialize `state' after trying the
implementation, which can throw an exception.
* javax/crypto/CipherSpi.java (engineDoFinal, engineUpdate): new
methods.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/ChangeLog-jessie-nio.diff?only_with_tag=jessie-nio&tr1=1.1.2.2&tr2=1.1.2.3&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/javax/crypto/Cipher.java.diff?only_with_tag=jessie-nio&tr1=1.4&tr2=1.4.6.1&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/javax/crypto/CipherSpi.java.diff?only_with_tag=jessie-nio&tr1=1.2&tr2=1.2.6.1&r1=text&r2=text


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23768



[Bug tree-optimization/25623] jump threading messes up "incoming frequencies" for some BBs

2006-03-10 Thread pinskia at gcc dot gnu dot org


--- Comment #5 from pinskia at gcc dot gnu dot org  2006-03-11 05:05 ---
Actually looking at this again, I am starting to think cfg cleanup is causing
this and not jump threading really.


-- 

pinskia at gcc dot gnu dot org changed:

   What|Removed |Added

  BugsThisDependsOn||26602


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25623



[Bug tree-optimization/26602] final_cleanup can mess up incoming frequencies

2006-03-10 Thread pinskia at gcc dot gnu dot org


--- Comment #1 from pinskia at gcc dot gnu dot org  2006-03-11 05:00 ---
Hmm, what is happening here is we fold the conditional and then update the
frequency for the next bb but not the ones after it which causes us to get the
warnings:
Invalid sum of incoming frequencies 2731, should be 2048

The numbers before the cleanup:
  # BLOCK 9 freq:719
  # BLOCK 3 freq:2156

After:
  # BLOCK 2 freq:2875


But:
  # BLOCK 6 freq:375
  # BLOCK 3 freq:2048


2875-375 == 2731 != 2048


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26602



[Bug middle-end/26640] gcc 4.1.0 fails to bootstrap build on SuSE 10 using gcc 4.0.3

2006-03-10 Thread pinskia at gcc dot gnu dot org


-- 

pinskia at gcc dot gnu dot org changed:

   What|Removed |Added

 Status|UNCONFIRMED |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26640



[Bug tree-optimization/26239] [4.0/4.1/4.2 Regression] Complete unrolling is undocumented in passes.texi

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26239



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

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25973



[Bug ada/26111] [4.0 Regression] Ada ICE in expand_assignment, at expr.c:3824

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26111



[Bug c++/25156] [3.4/4.0/4.1/4.2 Regression] wrong error message (int instead of bool)

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25156



[Bug c/25314] [3.4/4.0/4.1/4.2 Regression] Unreachable code at beginning of switch statement is not reported anymore

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25314



[Bug fortran/25576] [4.0 only] checking failure in execute/intrinsic_eoshift.f90

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25576



[Bug target/25448] [4.0/4.1/4.2 Regression] Unfounded warnings from the AVR backend

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25448



[Bug target/25343] [4.0/4.1/4.2 regression] [m68k] testsuite failures

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25343



[Bug preprocessor/24976] [3.4/4.0/4.1/4.2 Regression] simple hexadecimal number and plus/minus and no space

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24976



[Bug driver/25208] [3.4/4.0/4.1/4.2 Regression] two outputs and -MMD

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208



[Bug target/25043] [4.0 Regression] [m68k] ICE in instantiate_virtual_regs_lossage

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25043



[Bug ada/24880] [4.0/4.1/4.2 regression] (Ada) Conversion of user-defined integer type with Size fixed causes crashes

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24880



[Bug testsuite/25831] [4.0 only] FAIL: gcc.dg/20050922-1.c (test for excess errors)

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25831



[Bug java/21428] [3.4/4.0 Regression] bogus warning: unused parameter 'this'

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21428



[Bug preprocessor/24024] [3.4/4.0/4.1/4.2 Regression] gcc -E -C processes "\" incorrectly inside C comments

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24024



[Bug c/23144] [4.0/4.1/4.2 Regression] invalid parameter forward declarations not diagnosed

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23144



[Bug c/21343] [4.0/4.1/4.2 Regression] incompatible internal linkage declarations in different scopes not diagnosed

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21343



[Bug rtl-optimization/24497] [3.4/4.0 Regression] internal compiler error: in apply_opt_in_copies, at loop-unroll.c:2122

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24497



[Bug c/22297] [4.0/4.1/4.2 Regression] missing uninitialization warning

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22297



[Bug c/21659] [3.4/4.0/4.1/4.2 Regression] [unit-at-a-time] "weak declaration must precede definition" error missing at >= O1

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21659



[Bug tree-optimization/20773] [4.0 Regression] ICE: SEGV building jar file

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20773



[Bug preprocessor/20285] [3.4/4.0/4.1/4.2 Regression] gcc -E - < . gives a misleading error message

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20285



[Bug libstdc++/17789] [3.4/4.0/4.1/4.2 Regression] Cannot 'make check' inside libstdc++-v3

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17789



[Bug debug/19192] [4.0/4.1/4.2 Regression] Current development gcc generates inaccurate line info for example code

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19192



[Bug preprocessor/20077] [3.4/4.0/4.1/4.2 Regression] GCC accepts macro definitions that fail a constraint

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20077



[Bug c++/21312] [3.4/4.0/4.1/4.2 Regression] Access violation diagnostic given twice

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21312



[Bug rtl-optimization/20583] [4.0 regression] ICE in output_operand: invalid expression as operand

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20583



[Bug tree-optimization/16913] [4.0/4.1/4.2 Regression] restrict does not make a difference

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16913



[Bug c++/17053] [4.0/4.1/4.2 Regression] Repo functionality partially broken on AIX (collect2.c)

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17053



[Bug tree-optimization/16306] [4.0/4.1/4.2 Regression] restrict and copying pointers problem

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16306



[Bug other/15082] [3.4/4.0/4.1/4.2 regression] Minor compilation problem for cross to Solaris 8

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15082



[Bug preprocessor/8270] [3.4/4.0/4.1/4.2 Regression] back-slash white space newline with comments, no warning

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8270



[Bug c++/17763] [3.4/4.0/4.1/4.2 Regression] Wrong context in error message for template parameter

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17763



[Bug target/15184] [3.4/4.0/4.1/4.2 Regression] Direct access to byte inside word not working with -march=pentiumpro

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15184



[Bug c++/14777] [3.4/4.0/4.1/4.2 Regression] typedef doesn't fully expose base class type

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14777



[Bug middle-end/19988] [4.0/4.1/4.2 Regression] pessimizes fp multiply-add/subtract combo

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19988



[Bug tree-optimization/17863] [4.0/4.1/4.2 Regression] performance loss (not inlining as much??)

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17863



[Bug rtl-optimization/23490] [3.4/4.0 Regression] Long compile time for array initializer with inlined constructor

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23490



[Bug c++/20681] [4.0/4.1/4.2 Regression] wrong "control reaches" warning with switches

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20681



[Bug c++/14179] [3.4/4.0/4.1/4.2 Regression] out of memory while parsing array with many initializers

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14179



[Bug tree-optimization/15678] [4.0/4.1/4.2 Regression] CSiBE i686 compilation time increased by 8% at -O2

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15678



[Bug middle-end/23848] [4.0/4.1/4.2 Regression] stack deallocation can be more efficient

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23848



[Bug c++/11987] [3.4/4.0/4.1/4.2 regression] Accepts-invalid with inherited nested type

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11987



[Bug c++/26577] [4.0/4.1/4.2 regression] ICE in cp_expr_size with volatile and call to static

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26577



[Bug c++/26058] [3.4/4.0/4.1/4.2 Regression] C++ error recovery regression

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26058



[Bug c++/26559] [4.0/4.1/4.2 Regression] ICE with __builtin_constant_p in template argument

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26559



[Bug c++/26558] [3.4/4.0/4.1/4.2 Regression] segfault on syntax error

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26558



[Bug middle-end/26557] [4.0/4.1/4.2 Regression] ICE in simplify_subreg

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26557



[Bug debug/26330] [4.0 only] gcc generates code that does not allow retrieval of struct arguments with debugger

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26330



[Bug target/25440] [4.0 only] failure in gcc.dg/tls/pr24428.c with -fpic/-fPIC on x86_64

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25440



[Bug target/26562] [3.4/4.0 Regression] unrecognizable insn with huge symbol offset with -fPIC

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26562



[Bug c++/26496] [3.4/4.0/4.1/4.2 Regression] Pointer to virtual member function.

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26496



[Bug c++/26571] [4.0/4.1/4.2 regression] Bad diagnostic using type modifier with struct

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26571



[Bug preprocessor/25717] [3.4/4.0 Regression] -dD does not list all defined macros (in particular, __STDC__)

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25717



[Bug target/25917] [4.0 Regression] gcc.c-torture/compile/20051228-1.c fails

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25917



[Bug target/25042] [3.4/4.0 Regression] __float128 ICE on x86

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25042



[Bug c++/25342] [3.4/4.0 Regression] internal compiler error: in lookup_member, at cp/search.c:1209

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25342



[Bug c/25805] [3.4/4.0 Regression] Incorrect handling of zero-initialized flexible arrays

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25805



[Bug gcov/profile/25551] [4.0 Regression] gcov incorrect count for lone return in block

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25551



[Bug target/23728] [4.0 regression] [m68k] ICE (Segmentation fault) building python

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23728



[Bug middle-end/26379] [4.0 Regression] ICE on vector shift RTL simplification

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26379



[Bug middle-end/26034] [4.0 Regression] gcc uses way too much stack space for this code

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26034



[Bug target/26098] [4.0 Regression] ICE in multiplication of 16-byte longlong vector on x86_64

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26098



[Bug tree-optimization/24931] [4.0 Regression] uninitialized structure member after assignment

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24931



[Bug c++/24522] [4.0 Regression] htonl in optimized template function generates compiler warning

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24522



[Bug middle-end/24306] [3.4/4.0 Regression] va_arg gets confused when skipping over certain zero-sized types with -msse

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24306



[Bug middle-end/24570] [4.0 Regression] unit-at-a-time: debug info not emitted for unused global variables

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24570



[Bug c++/23708] [4.0 Regression] Non-inline function incorrectly treated as inline when using precompiled headers

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23708



[Bug target/23963] [4.0 Regression] MMX intrinsics cause ICE in trunc_int_for_mode

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963



[Bug tree-optimization/23563] [4.0 Regression] False warning for uninitialized variable

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23563



[Bug c++/24907] [3.4/4.0 Regression] "int x, ;" accepted

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24907



[Bug middle-end/24020] [4.0 regression] Excessive (x20) recusive inlining for 4.0 with -O3 and poor stack usage even without inlining

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24020



[Bug rtl-optimization/24361] [4.0 regression] Optimizations -fcse-follow-jumps -fforce-mem break code

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24361



[Bug target/24586] [4.0 regression] ICE in g++.dg/opt/mmx2.C

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24586



[Bug middle-end/24004] [4.0 Regression] bogus 'may be uninit warnings' for loops

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24004



[Bug c++/22597] [3.4/4.0 Regression] pure attribute produces incorrect results

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22597



[Bug libmudflap/23170] [4.0 only] libmudflap should not use functions marked obsolescent by POSIX/SUS

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23170



[Bug debug/23205] [4.0 Regression] [C++/unit-at-a-time] stabs debug info omitted for global const variables

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23205



[Bug rtl-optimization/23454] [4.0 regression] ICE in invert_exp_1, at jump.c:1719

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23454



[Bug middle-end/23090] [4.0 Regression] gcc.c-torture/execute/20050713-1.c -Os fails

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23090



[Bug middle-end/23290] [4.0 Regression] Layout changed for structure with single complex field

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23290



[Bug c/23228] [3.4/4.0 Regression] Silly "unused variable" warning after redeclaration of a local variable

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23228



[Bug target/22537] [4.0 Regression] unable to find a register to spill in class "CREG"

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22537



[Bug tree-optimization/22415] [4.0 Regression] ICE in coalesce_abnormal_edges

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22415



[Bug libmudflap/21724] [4.0 Regression] libmudflap/Makefile.am, refusing to install mf-runtime.h in includedir

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21724



[Bug target/22077] [4.0 Regression] vec_all_eq does not produce good result

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22077



[Bug c++/21509] [3.4/4.0 regression] -Wformat=2 incorrectly warns about string literalness

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21509



[Bug tree-optimization/21304] [4.0 regression] very long compile times with large cpp file from kdebindings

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21304



[Bug c++/22252] [4.0 Regression] pragma interface/implementation still break synthesized methods

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22252



[Bug tree-optimization/22360] [4.0 Regression] upper_bound_in_type and lower_bound_in_type are buggy

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22360



[Bug c++/21308] [3.4/4.0 Regression] Very high compile time

2006-03-10 Thread mmitchel at gcc dot gnu dot org


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

   Target Milestone|4.0.3   |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21308



  1   2   3   >