Your message dated Sat, 17 May 2003 17:32:54 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#64832: fixed in gcc-3.3 1:3.3ds9-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 28 May 2000 22:39:24 +0000
>From [EMAIL PROTECTED] Sun May 28 17:39:24 2000
Return-path: <[EMAIL PROTECTED]>
Received: from mail.netwings.ch [194.209.75.66] 
        by master.debian.org with smtp (Exim 3.12 2 (Debian))
        id 12wBiN-0002zu-00; Sun, 28 May 2000 17:39:24 -0500
Received: from gromit.netwings.ch
        (w105-197.netwings.ch [194.209.75.197])
        by mail.netwings.ch; Mon, 29 May 2000 00:37:43 +0200
Received: from mb by gromit.netwings.ch with local (Exim 2.05 #1 (Debian))
        id 12wBjQ-0000dK-00; Mon, 29 May 2000 00:40:28 +0200
Date: Mon, 29 May 2000 00:40:28 +0200
From: Martin Buck <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: gcc optimizer bug on m68k
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.3i
Delivered-To: [EMAIL PROTECTED]

Package: gcc-m68k-linux
Version: 2.95.2-?

gcc miscompiles the following trivial program on m68k if optimization is
turned on:

------------------------------------------------------------------
#include <stdio.h>

typedef struct {
  short a;
  short b;
  char *c;
} foo_t;


void
bug(foo_t *fooptr) {
  foo_t f;
  
  f.c = (char *)0x12345678;
  f.b = 0;
  *fooptr = f;
}


int
main(int argc, char *argv[]) {
  foo_t f;
  
  bug(&f);
  printf("foo returned: %p\n", f.c);
}
------------------------------------------------------------------


The output from the optimized program is
foo returned: 0x12340000
whereas the expected output would be
foo returned: 0x12345678

The bug is in the assignment of f.b at the end of function bug(). Instead
of assigning to element b in the struct, half of element c gets destroyed.
Here is the output from "objdump --source" (with optimization turned on):

foo.o:     file format elf32-m68k

Disassembly of section .text:

00000000 <bug>:
} foo_t;


void
bug(foo_t *fooptr) {
   0:   4e56 0000       linkw %fp,#0
   4:   206e 0008       moveal %fp@(8),%a0
  foo_t f;
  
  f.c = (char *)0x12345678;
   8:   223c 1234 5678  movel #305419896,%d1
  f.b = 0;
  *fooptr = f;
   e:   4241            clrw %d1
                        ^^^^^^^^
                        This is wrong, it should clear half of d0, not d1

  10:   2080            movel %d0,%a0@
  12:   2141 0004       movel %d1,%a0@(4)
}
  16:   4e5e            unlk %fp
  18:   4e75            rts

0000001a <main>:


int
main(int argc, char *argv[]) {
  1a:   4e56 fff8       linkw %fp,#-8
  foo_t f;
  
  bug(&f);
  1e:   486e fff8       pea %fp@(-8)
  22:   61ff 0000 0000  bsrl 24 <main+0xa>
  printf("foo returned: %p\n", f.c);
  28:   2f2e fffc       movel %fp@(-4),[EMAIL PROTECTED]
  2c:   4879 0000 0000  pea 0 <bug>
  32:   61ff 0000 0000  bsrl 34 <main+0x1a>
}
  38:   4e5e            unlk %fp
  3a:   4e75            rts



-- 
Martin Buck               E-mail: [EMAIL PROTECTED]  or  [EMAIL PROTECTED]
Phone/Fax: +41-56-4963841   Snail-mail: Steigstrasse 13, CH-5452 Oberrohrdorf
PGP key available, MIME mail welcome        WWW: http://home.pages.de/~mbuck/

---------------------------------------
Received: (at 64832-close) by bugs.debian.org; 17 May 2003 21:40:43 +0000
>From [EMAIL PROTECTED] Sat May 17 16:40:43 2003
Return-path: <[EMAIL PROTECTED]>
Received: from auric.debian.org [206.246.226.45] (mail)
        by master.debian.org with esmtp (Exim 3.12 1 (Debian))
        id 19H9Q1-0006Ch-00; Sat, 17 May 2003 16:40:41 -0500
Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian))
        id 19H9IU-0003Tp-00; Sat, 17 May 2003 17:32:54 -0400
From: Matthias Klose <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.34 $
Subject: Bug#64832: fixed in gcc-3.3 1:3.3ds9-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 17 May 2003 17:32:54 -0400
Delivered-To: [EMAIL PROTECTED]

We believe that the bug you reported is fixed in the latest version of
gcc-3.3, which is due to be installed in the Debian FTP archive:

cpp-3.3-doc_3.3-1_all.deb
  to pool/main/g/gcc-3.3/cpp-3.3-doc_3.3-1_all.deb
cpp-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/cpp-3.3_3.3-1_i386.deb
fastjar_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/fastjar_3.3-1_i386.deb
fixincludes_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/fixincludes_3.3-1_i386.deb
g++-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/g++-3.3_3.3-1_i386.deb
g77-3.3-doc_3.3-1_all.deb
  to pool/main/g/gcc-3.3/g77-3.3-doc_3.3-1_all.deb
g77-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/g77-3.3_3.3-1_i386.deb
gcc-3.3-base_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/gcc-3.3-base_3.3-1_i386.deb
gcc-3.3-doc_3.3-1_all.deb
  to pool/main/g/gcc-3.3/gcc-3.3-doc_3.3-1_all.deb
gcc-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/gcc-3.3_3.3-1_i386.deb
gcc-3.3_3.3ds9-1.diff.gz
  to pool/main/g/gcc-3.3/gcc-3.3_3.3ds9-1.diff.gz
gcc-3.3_3.3ds9-1.dsc
  to pool/main/g/gcc-3.3/gcc-3.3_3.3ds9-1.dsc
gcc-3.3_3.3ds9.orig.tar.gz
  to pool/main/g/gcc-3.3/gcc-3.3_3.3ds9.orig.tar.gz
gcj-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/gcj-3.3_3.3-1_i386.deb
gij-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/gij-3.3_3.3-1_i386.deb
gnat-3.3-doc_3.3-1_all.deb
  to pool/main/g/gcc-3.3/gnat-3.3-doc_3.3-1_all.deb
gnat-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/gnat-3.3_3.3-1_i386.deb
gobjc-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/gobjc-3.3_3.3-1_i386.deb
gpc-2.1-3.3-doc_3.3.20030507-1_all.deb
  to pool/main/g/gcc-3.3/gpc-2.1-3.3-doc_3.3.20030507-1_all.deb
gpc-2.1-3.3_3.3.20030507-1_i386.deb
  to pool/main/g/gcc-3.3/gpc-2.1-3.3_3.3.20030507-1_i386.deb
libffi2-dev_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libffi2-dev_3.3-1_i386.deb
libffi2_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libffi2_3.3-1_i386.deb
libg2c0_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libg2c0_3.3-1_i386.deb
libgcc1_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libgcc1_3.3-1_i386.deb
libgcj-common_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libgcj-common_3.3-1_i386.deb
libgcj4-dev_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libgcj4-dev_3.3-1_i386.deb
libgcj4_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libgcj4_3.3-1_i386.deb
libobjc1_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libobjc1_3.3-1_i386.deb
libstdc++5-3.3-dbg_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-dbg_3.3-1_i386.deb
libstdc++5-3.3-dev_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-dev_3.3-1_i386.deb
libstdc++5-3.3-doc_3.3-1_all.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-doc_3.3-1_all.deb
libstdc++5-3.3-pic_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-pic_3.3-1_i386.deb
libstdc++5_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5_3.3-1_i386.deb
protoize_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/protoize_3.3-1_i386.deb
treelang-3.3_3.3-1_i386.deb
  to pool/main/g/gcc-3.3/treelang-3.3_3.3-1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <[EMAIL PROTECTED]> (supplier of updated gcc-3.3 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 16 May 2003 07:13:57 +0200
Source: gcc-3.3
Binary: libgnat3.15 gcc-3.3-nof gcc-3.3 libobjc1 libgcc1 lib64g2c0 
libstdc++5-3.3-doc libgcj4 gpc-2.1-3.3-doc libstdc++5 cpp-3.3-doc protoize 
cpp-3.3 libstdc++5-3.3-dbg g77-3.3-doc gpc-2.1-3.3 g77-3.3 libgcj4-dev 
gcc-3.3-doc lib64objc1 lib64ffi2 libstdc++5-3.3-dev libffi2-dev gcj-3.3 
libgcj-common gobjc-3.3 lib64stdc++5 gcc-3.3-soft-float lib64gcj4 treelang-3.3 
libg2c0-dev lib64gcc1 fastjar lib64gnat3.15 fixincludes libg2c0 gij-3.3 
libstdc++5-3.3-pic gcc-3.3-base g++-3.3 gnat-3.3 libffi2 gnat-3.3-doc
Architecture: source i386 all
Version: 1:3.3ds9-1
Distribution: unstable
Urgency: low
Maintainer: Debian GCC maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <[EMAIL PROTECTED]>
Description: 
 cpp-3.3    - The GNU C preprocessor
 cpp-3.3-doc - Documentation for the GNU C preprocessor (cpp)
 fastjar    - Jar creation utility
 fixincludes - Fix non-ANSI header files
 g++-3.3    - The GNU C++ compiler
 g77-3.3    - The GNU Fortran 77 compiler
 g77-3.3-doc - Documentation for the GNU Fortran compiler (g77)
 gcc-3.3    - The GNU C compiler
 gcc-3.3-base - The GNU Compiler Collection (base package)
 gcc-3.3-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcj-3.3    - The GNU compiler for Java(TM)
 gij-3.3    - The GNU Java bytecode interpreter
 gnat-3.3   - The GNU Ada compiler
 gnat-3.3-doc - Documentation for the GNU Ada compiler (gnat)
 gobjc-3.3  - The GNU Objective-C compiler
 gpc-2.1-3.3 - The GNU Pascal compiler
 gpc-2.1-3.3-doc - Documentation for the GNU Pascal compiler (gpc)
 libffi2    - Foreign Function Interface library runtime
 libffi2-dev - Foreign Function Interface library development
 libg2c0    - Runtime library for GNU Fortran 77 applications
 libgcc1    - GCC support library
 libgcj-common - Java runtime library (common files)
 libgcj4    - Java runtime library for use with gcj
 libgcj4-dev - Java development headers and static library for use with gcj
 libobjc1   - Runtime library for GNU Objective-C applications
 libstdc++5 - The GNU Standard C++ Library v3
 libstdc++5-3.3-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++5-3.3-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++5-3.3-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++5-3.3-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-3.3 - The GNU Treelang compiler
Closes: 2910 12253 20695 21255 27878 33786 34876 35477 42662 42989 43001 43119 
43170 45440 46181 47981 48530 50529 51456 51651 53698 55291 55967 56867 58219 
59005 59232 61806 62309 64628 64832 65406 65686 65687 67631 68963 68987 70743 
72933 79225 80468 81122 83221 83363 83550 84969 85535 85934 87540 88260 88694 
90363 90666 93708 94701 94891 95318 97603 105309 105569 114029 118670 118781 
120333 127489 128367 130415 131454 131890 134558 136630 136659 137382 140427 
141797 142844 144602 146006 148603 150558 151196 151357 151671 151675 152315 
152709 154599 154767 156450 157292 158704 161615 162074 165110 165829 165992 
166766 167439 168310 168346 170994 172956 176387 178596 178830 178909 178965 
179363 179597 180493 180567 180750 180937 181679 184108 184753 184800 184862 
185903 186139 186299 186447 187910 188527 189702 190066 191407
Changes: 
 gcc-3.3 (1:3.3ds9-1) unstable; urgency=low
 .
   * gcc-3.3 final release.
     See /usr/share/doc/gcc-3.3/NEWS.{gcc,html}.
   * First merge of i386/x86-64 biarch support (Arnd Bergmann).
     Disabled by default. Closes: #190066.
   * New gpc-20030507 version.
   * Upstream gpc update to fix netbsd build failure (closes: #191407).
   * Add arm-xscale.dpatch, arm-10730.dpatch, arm-tune.dpatch, copied
     from gcc-3.2 (Phil Blundell).
   * Closing bug reports reported against older gcc versions (some of them
     still present in Debian, but not anymore as the default compiler).
     Usually, forwarded bug reports are linked to
         http://gcc.gnu.org/PR<upstream bug number>
     The upstream bug number usually can be found in the Debian reports.
 .
   * Closed reports reported against gcc-3.1.x, gcc-3.2.x and fixed in gcc-3.3:
     - General:
       + GCC accepts multi-line strings without \ or " " &c (closes: #2910).
       + -print-file-name sometimes fails (closes: #161615).
       + ICE: reporting routines re-entered (closes: #179597, #180937).
       + Misplaced paragraph in gcc documentation (closes: #179363).
       + Error: suffix or operands invalid for `div' (closes: #150558).
       + builtin memcmp() could be optimised (closes: #85535).
     - Ada:
       + Preelaborate, exceptions, and -gnatN (closes: #181679).
     - C:
       + Duplicate loop conditions even with -Os (closes: #94701).
       + ICE (signal 11) (closes: #65686).
     - C++:
       + C++ error on virtual function which uses ... (closes: #165829).
       + ICE when warning about cleanup nastiness in switch statements
         (closes: #184108).
       + Fails to compile virtual inheritance with variable number of
         argument method (closes: #151357).
       + xmmintrin.h broken for c++ (closes: #168310).
       + Stack corruption with variable-length automatic arrays and virtual
         destructors (closes: #188527).
       + ICE on illegal code (closes: #184862).
       + _attribute__((unused)) is ignored in C++ (closes: #45440).
       + g++ handles &(void *)foo bizzarely (closes: #79225).
       + ICE (with wrong code, though) (closes: #81122).
     - Java:
       + Broken zip file handling (closes: #180567).
     - ObjC:
       + @protocol forward definitions do not work (closes: #80468).
     - Architecture specific:
       - alpha
         + va_start is off by one (closes: #186139).
         + ICE while building kseg/ddd (closes: #184753).
         + g++ -O2 optimization error (closes: #70743).
       - arm
         + ICE with -O2 in change_address_1 (closes: #180750).
         + gcc optimization error with -O2, affecting bison (closes: #185903).
       - hppa
         + ICE in insn_default_length (closes: #186447).
       - ia64
         + gcc-3.2 fails w/ optimization (closes: #178830).
       - i386
         + unnecessary generation of instruction cwtl (closes: #95318).
         + {athlon} ICE building mplayer (closes: #184800).
         + {pentium4} ICE while compiling mozilla with -march=pentium4
           (closes: #187910).
         + i386 optimisation: joining tests (closes: #105309).
       - m68k
         + ICE in instantiate_virtual_regs_1 (closes: #180493).
         + gcc optimizer bug on m68k (closes: #64832).
       - powerpc
         + ICE in extract_insn, at recog.c:2175 building php3 (closes: #186299).
         + ICE with -O -Wunreachable-code (closes: #189702).
       - s390
         + Operand out of range at assembly time when using -O2
           (closes: #178596).
       - sparc
         + gcc-3.2 regression (wrong code) (closes: #176387).
         + ICE in mem_loc_descriptor when optimizing (closes: #178909).
         + ICE in gen_reg_rtx when optimizing (closes: #178965).
         + Optimisation leads to unaligned access in memcpy (closes: #136659).
 .
   * Closed reports reported against gcc-3.0 and fixed in gcc-3.2.x:
     - General:
       + Use mkstemp instead of mktemp (closed: #127802).
     - Preprocessor:
       + Fix redundant error message from cpp (closed: #100722).
     - C:
       + Optimization issue on ix86 (pointless moving) (closed: #97904).
       + Miscompilation of allegro on ix86 (closed: #105741).
       + Fix generation of ..ng references for static aliases (alpha-linux).
         (closed: #108036).
       + ICE compiling pari on hppa (closed: #111613).
       + ICE on ia64 in instantiate_virtual_regs_1 (closed: #121668).
       + ICE in c-typeck.c (closed: #123687).
       + ICE in gen_subprogram_die on alpha (closed: #127890).
       + SEGV in initialization of flexible char array member (closed: #131399).
       + ICE on arm compiling lapack (closed: #135967).
       + ICE in incomplete_type_error (closed: #140606).
       + Fix -Wswitch (also part of -Wall) (closed: #140995).
       + Wrong code in mke2fs on hppa (closed: #150232).
       + sin(a) * sin(b) gives wrong result (closed: #164135).
     - C++:
       + Error in std library headers on arm (closed: #107633).
       + ICE nr. 19970302 (closed: #119635).
       + std::wcout does not perform encoding conversions (closed: #128026).
       + SEGV, when compiling iostream.h with -fPIC (closed: #134315).
       + Fixed segmentation fault in included code for <rope> (closed: #137017).
       + Fix with exception handling and -O (closed: #144232).
       + Fix octave-2.1 build failure on ia64 (closed: #144584).
       + nonstandard overloads in num_get facet (closed: #155900).
       + ICE in expand_end_loop with -O (closed: #158371).
     - Fortran:
       + Fix blas build failure on arm (closed: #137959).
     - Java:
       + Interface members are public by default (closed: #94974).
       + Strange message with -fno-bounds-check in combination with -W.
         (closed: #102353).
       + Crash in FileWriter using IOException (closed: #116128).
       + Fix ObjectInputStream.readObject() calling constructors.
         (closed: #121636).
       + gij: better error reporting on `class not found' (closed: #125649).
       + Lockup during .java->.class compilation (closed: #141899).
       + Compile breaks using temporary inner class instance (closed: #141900).
       + Default constructor for inner class causes broken bytecode.
         (closed: #141902).
       + gij-3.2 linked against libgcc1 (closed: #165180).
       + gij-wrapper understands -classpath parameter (closed: #146634).
       + gij-3.2 doesn't ignore -jar when run as "java" (closed: #167673).
     - ObjC:
       + ICE on alpha (closed: #172353).
 .
   * Closed reports reported against gcc-2.95 and fixed in newer versions:
     - General:
       + Undocumented option -pthread (closes: #165110).
       + stdbool.h broken (closes: #167439).
       + regparm/profiling breakage (closes: #20695).
       + another gcc optimization error (closes: #51456).
       + ICE in `output_fix_trunc' (closes: #55967).
       + Fix "Unable to generate reloads for" (closes: #58219, #131890).
       + gcc -c -MD x/y.c -o x/y.o leaves y.d in cwd (closes: #59232).
       + Compiler error with -O2 (closes: #67631).
       + ICE (unrecognizable insn) compiling php4 (closes: #83550, #84969).
       + Another ICE (closes: #90666).
       + man versus info inconsistency (-W and -Wall) (closes: #93708).
       + ICE on invalid extended asm (closes: #136630).
       + ICE in `emit_no_conflict_block' compiling perl (closes: #154599).
       + ICE in `gen_tagged_type_instantiation_die'(closes: #166766).
       + ICE on __builtin_memset(s, 0, -1) (closes: #170994).
       + -Q option to gcc appears twice in the documentation (closes: #137382).
       + New options for specifying targets:- -MQ and -MT (closes: #27878).
       + Configure using --enable-nls (closes: #51651).
       + gcc -dumpspecs undocumented (closes: #65406).
     - Preprocessor:
       + cpp fails to parse macros with varargs correctly(closes: #154767).
       + __VA_ARGS__ stringification crashes preprocessor if __VA_ARGS__ is
         empty (closes: #152709).
       + gcc doesn't handle empty args in macro function if there is only
         one arg(closes: #156450).
     - C:
       + Uncaught floating point exception causes ICE (closes: #33786).
       + gcc -fpack-struct doesn't pack structs (closes: #64628).
       + ICE in kernel (matroxfb) code (closes: #151196).
       + gcc doesn't warn about unreachable code (closes: #158704).
       + Fix docs for __builtin_return_address(closes: #165992).
       + C99 symbols in limits.h not defined (closes: #168346).
       + %zd printf spec generates warning, even in c9x mode (closes: #94891).
       + Update GCC attribute syntax (closes: #12253, #43119).
     - C++ & libstdc++-v3:
       + template and virtual inheritance bug (closes: #152315).
       + g++ has some troubles with nested templates (closes: #21255).
       + vtable thunks implementation is broken (closes: #34876, #35477).
       + ICE for templated friend (closes: #42662).
       + ICE compiling mnemonic (closes: #42989).
       + Deprecated: result naming doesn't work for functions defined in a
         class (closes: #43170).
       + volatile undefined ... (closes: #50529).
       + ICE concerning templates (closes: #53698).
       + Program compiled -O3 -malign-double segfaults in ofstream::~ofstream
         (closes: #56867).
       + __attribute__ ((constructor)) doesn't work with C++ (closes: #61806).
       + Another ICE (closes: #65687).
       + ICE in `const_hash' (closes: #72933).
       + ICE on illegal code (closes: #83221).
       + Wrong code with -O2 (closes: #83363).
       + ICE on template class (closes: #85934).
       + No warning for missing return in non-void member func (closes: #88260).
       + Not a bug/fixed in libgcc1: libgcc.a symbols end up exported by
         shared libraries (closes: #118670).
       + ICE using nested templates (closes: #118781).
       + Another ICE with templates (closes: #127489).
       + More ICEs (closes: #140427, #141797).
       + ICE when template declared after use(closes: #148603).
       + template function default arguments are not handled (closes: #157292).
       + Warning when including stl.h (closes: #162074).
       + g++ -pedantic-errors -D_GNU_SOURCE cannot #include <complex>
         (closes: #151671).
       + c++ error message improvement suggestion (closes: #46181).
       + Compilation error in stl_alloc.h with -fhonor-std (closes: #59005).
       + libstdc++ has no method at() in stl_= (closes: #68963).
     - Fortran:
       + g77 crash (closes: #130415).
     - ObjC:
       + ICE: program cc1obj got fatal signal 11 (closes: #62309).
       + Interface to garbage collector is undocumented. (closes: #68987).
     - Architecture specific:
       - alpha
         + Can't compile with define gnu_source with stdio and curses
           (closes: #97603).
         + Header conflicts on alpha (closes: #134558).
         + lapack-dev: cannot link on alpha (closes: #144602).
         + ICE `fixup_var_refs_1' (closes: #43001).
         + Mutt segv on viewing list of attachments (closes: #47981).
         + ICE building open-amulet (closes: #48530).
         + ICE compiling hatman (closes: #55291).
         + dead code removal in switch() broken (closes: #142844).
       - arm
         + Miscompilation using -fPIC on arm (closes: #90363).
         + infinite loop with -O on arm (closes: #151675).
       - i386
         + ICE when using -mno-ieee-fp and -march=i686 (closes: #87540).
       - m68k
         + Optimization (-O2) broken on m68k (closes: #146006).
       - mips
         + g++ exception catching does not work... (closes: #105569).
         + update-menus gets Bus Error (closes: #120333).
       - mipsel
         + aspell: triggers ICE on mipsel (closes: #128367).
       - powerpc
         + -O2 produces wrong code (gnuchess example) (closes: #131454).
       - sparc
         + Misleading documentation for -malign-{jump,loop,function}s
           (closes: #114029).
         + Sparc GCC issue with -mcpu=ultrasparc (closes: #172956).
         + flightgear: build failure on sparc (closes: #88694).
Files: 
 3d2b083f9a2b539d296ef5a911343705 2307 devel standard gcc-3.3_3.3ds9-1.dsc
 fa100f062223973e958be2ab18e5f688 24926760 devel standard 
gcc-3.3_3.3ds9.orig.tar.gz
 37bbc04e3dad6b933a30504ec4fe6b08 2204853 devel standard 
gcc-3.3_3.3ds9-1.diff.gz
 79ea1bdd209725be2bb3ee2e5537da48 82876 doc optional cpp-3.3-doc_3.3-1_all.deb
 000578b291dde293992bcd0156f7a7d0 3093140 doc optional 
libstdc++5-3.3-doc_3.3-1_all.deb
 e59a1eb9c96c802db82d4e6b59af2541 274170 doc optional g77-3.3-doc_3.3-1_all.deb
 a857f599f57e548603c5ab9825b144ff 348964 doc optional gnat-3.3-doc_3.3-1_all.deb
 cb59ea86b3d2c4380e958c3eee6d962b 76210 doc optional 
gpc-2.1-3.3-doc_3.3.20030507-1_all.deb
 292853d621b1c8b8ffa13c74e539e6ec 602750 doc optional gcc-3.3-doc_3.3-1_all.deb
 216eac130d297e3e30b112d24a4bc8fd 138902 devel important 
gcc-3.3-base_3.3-1_i386.deb
 f3bb1d18e89f7af1f605da89cbaa2b2f 67788 libs important libgcc1_3.3-1_i386.deb
 b90a7bcee01d015cc7414be5c2f6d25c 1305878 interpreters standard 
cpp-3.3_3.3-1_i386.deb
 a3aab24cd88de2e34db3ad8a633ce125 22584 devel optional protoize_3.3-1_i386.deb
 b7654a977ea0da9b8fa54ddab189de5d 47206 devel optional 
fixincludes_3.3-1_i386.deb
 c63d3d44280d95bbe60ced8aad62c6a5 1379180 devel optional 
gobjc-3.3_3.3-1_i386.deb
 d2e1b5e3d520a38be5333be3ccfd2899 124356 libs optional libobjc1_3.3-1_i386.deb
 9b7315a4e5f071018ec374b548b76228 12914 devel optional gij-3.3_3.3-1_i386.deb
 c9c6efe00a0679878685b1e84211e126 4010832 libs optional libgcj4_3.3-1_i386.deb
 fb35ad9b8ecb76c3982cb2384e359da3 54070 libs optional 
libgcj-common_3.3-1_i386.deb
 558b45f1c621ea045eab117e32a87c69 1604634 devel optional gcj-3.3_3.3-1_i386.deb
 06967a15447e2ef1dd04d5a04dea6699 4819306 libdevel optional 
libgcj4-dev_3.3-1_i386.deb
 028dc977e84e9402617c718380f981dd 111618 devel extra fastjar_3.3-1_i386.deb
 8757ca758feac2763aa62fddbe145429 64244 libs optional libffi2_3.3-1_i386.deb
 70a7aab8f3f57cd9974f3023ceddee19 10724 libdevel optional 
libffi2-dev_3.3-1_i386.deb
 979084825831a155c6f14da19e76ff79 1667548 devel standard g++-3.3_3.3-1_i386.deb
 a759a7b2f2204d6f7798d6c7cf08b712 268318 base important 
libstdc++5_3.3-1_i386.deb
 48583aab7407576b4a9cf225cb22d60a 735648 libdevel optional 
libstdc++5-3.3-dev_3.3-1_i386.deb
 98f58480d80c7222495e70600e2b49dd 309792 libdevel extra 
libstdc++5-3.3-pic_3.3-1_i386.deb
 010ddd4bc2b901e2881ceadcae4d8731 5004206 libdevel extra 
libstdc++5-3.3-dbg_3.3-1_i386.deb
 d76d5d48818d2252e62f67fd8a0e338a 47258 libs optional libg2c0_3.3-1_i386.deb
 4ec194476feb6c060caa878d44e4a9b7 1511860 devel optional g77-3.3_3.3-1_i386.deb
 00192418de41835341ea92e8a105c1d8 6106558 devel optional gnat-3.3_3.3-1_i386.deb
 70fbb333b1766707bbac9451d473793e 1238548 devel optional 
treelang-3.3_3.3-1_i386.deb
 6f3a976e18c5d2bc5f31de344262b15f 1938336 devel optional 
gpc-2.1-3.3_3.3.20030507-1_i386.deb
 342cf1a42b035e38dbe89003edafb18f 1295518 devel standard gcc-3.3_3.3-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE+xnq0StlRaw+TLJwRAiLKAJ0WkgHHwXa9PnIFCznl9vaw+lPmPgCbBOKh
LGKxwAkaRKfU3nZ6MRTiMUo=
=53cd
-----END PGP SIGNATURE-----


Reply via email to