[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#582787: marked as done (gcc-4.4: [hppa] Test tstdiomisc fails when multiplication of NAN by -1 results in NAN again.)



Your message dated Thu, 03 Jun 2010 05:03:30 +0000
with message-id <E1OK2aY-0002DM-Ix@ries.debian.org>
and subject line Bug#582787: fixed in gcc-4.4 4.4.4-4
has caused the Debian Bug report #582787,
regarding gcc-4.4: [hppa] Test tstdiomisc fails when multiplication of NAN by -1 results in NAN again.
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
582787: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582787
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: gcc-4.4
Version: 4.4.4-2


----- Forwarded message from Carlos O'Donell <carlos@systemhalted.org> -----

Date: Sat, 22 May 2010 22:58:18 -0400
From: Carlos O'Donell <carlos@systemhalted.org>
To: John David Anglin <dave.anglin@nrc-cnrc.gc.ca>,
	Debian HPPA Port List <debian-hppa@lists.debian.org>,
	libc-ports@sourceware.org
Subject: Test tstdiomisc fails when multiplication of NAN by -1 results in NAN  again.

Dave,

The following testcase is an example of code used in a glibc testcase.
I'm trying hard to shake out the bugs in the glibc testsuite for
debian, and one testsuite failure looks like a compiler issue.

The expected behaviour is for the testcase to print the raw IEEE754
value of -NAN.

The observed behaviour, when -DALT is on the command line, is that the
testcase prints the incorrect raw value e.g. NAN.

GCC 4.4.3 in debian doesn't compile this code correctly. Could you
have a loot at my analysis and tell me if you have seen this before?

cat >> tst-mul-nan.c <<EOF
#include <stdio.h>
#include <math.h>

#ifdef ALT
volatile double nanval;
#else
#define nanval NAN
#endif

int
main ()
{
#ifdef ALT
  nanval = NAN;
#endif
  printf ("0x%llx\n", -nanval);
  return 0;
}
EOF

gcc -g3 -O0 -save-temps -o test-mul-nan-OK test-mul-nan.c; ./test-mul-nan-OK
0xfff7ffffffffffff

This is the correct result e.g. -NAN. In the correct case the compiler
has already computer -NAN and it's loaded directly from the local
symbol e.g.

.LC1:
        .word   -524289
        .word   -1

This is the case that is not working correctly:

gcc -g3 -O0 -save-temps -DALT -o test-mul-nan-NG test-mul-nan.c;
./test-mul-nan-NG
0x7ff7ffffffffffff

That result is not -NAN, it is NAN. This is incorrect.

In the incorrect compilation the compiler loads NAN from a local constant:

.LC0:
        .word   2146959359
        .word   -1

This is 0x7ff7ffffffffffff e.g. NAN.

Then it loads something which I assume *should* be -1, but isn't:

.LC2:
        .word   -1074790400
        .word   0

What is this value, it's 0xbff0000000000000 e.g. -1.875. Should it be
0xbf80000000000000 e.g. -1.0 exactly, but it's not? Is this a mistake?

In the incorrect case the compiler tries to multiply this value by NAN
to get a result of -NAN.

        addil LR'nanval-$global$,%r27
        copy %r1,%r19
        ldo RR'nanval-$global$(%r19),%r19
        fldds 0(%r19),%fr23
        ldil LR'.LC2,%r19
        ldo RR'.LC2(%r19),%r19
        fldds 0(%r19),%fr22
        fmpy,dbl %fr23,%fr22,%fr22

It seems like it should work (even if fr22 is -1.875), since the sign
of the output NAN is the XOR of the signs of the inputs, therefore "-
XOR + = -" and the the result should be -NAN, but it's not, it's NAN?
Why?

PA-RISC 2.0 Architecture, Floating Coprocessor 8-23 "Operations With
NaNs", and 8-24 "Sign Bit" can be referenced for information on NANs.

After the multiplication fr22 still contains NAN, and that is what is
printed instead of the expected result of -NAN.

Any idea what is going on here? Thanks for your help.

Cheers,
Carlos.

----- End forwarded message -----



--- End Message ---
--- Begin Message ---
Source: gcc-4.4
Source-Version: 4.4.4-4

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

cpp-4.4_4.4.4-4_i386.deb
  to main/g/gcc-4.4/cpp-4.4_4.4.4-4_i386.deb
fixincludes_4.4.4-4_i386.deb
  to main/g/gcc-4.4/fixincludes_4.4.4-4_i386.deb
g++-4.4-multilib_4.4.4-4_i386.deb
  to main/g/gcc-4.4/g++-4.4-multilib_4.4.4-4_i386.deb
g++-4.4_4.4.4-4_i386.deb
  to main/g/gcc-4.4/g++-4.4_4.4.4-4_i386.deb
gcc-4.4-base_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gcc-4.4-base_4.4.4-4_i386.deb
gcc-4.4-locales_4.4.4-4_all.deb
  to main/g/gcc-4.4/gcc-4.4-locales_4.4.4-4_all.deb
gcc-4.4-multilib_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gcc-4.4-multilib_4.4.4-4_i386.deb
gcc-4.4-source_4.4.4-4_all.deb
  to main/g/gcc-4.4/gcc-4.4-source_4.4.4-4_all.deb
gcc-4.4_4.4.4-4.diff.gz
  to main/g/gcc-4.4/gcc-4.4_4.4.4-4.diff.gz
gcc-4.4_4.4.4-4.dsc
  to main/g/gcc-4.4/gcc-4.4_4.4.4-4.dsc
gcc-4.4_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gcc-4.4_4.4.4-4_i386.deb
gfortran-4.4-multilib_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gfortran-4.4-multilib_4.4.4-4_i386.deb
gfortran-4.4_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gfortran-4.4_4.4.4-4_i386.deb
gobjc++-4.4-multilib_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gobjc++-4.4-multilib_4.4.4-4_i386.deb
gobjc++-4.4_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gobjc++-4.4_4.4.4-4_i386.deb
gobjc-4.4-multilib_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gobjc-4.4-multilib_4.4.4-4_i386.deb
gobjc-4.4_4.4.4-4_i386.deb
  to main/g/gcc-4.4/gobjc-4.4_4.4.4-4_i386.deb
lib64gcc1-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64gcc1-dbg_4.4.4-4_i386.deb
lib64gcc1_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64gcc1_4.4.4-4_i386.deb
lib64gfortran3-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64gfortran3-dbg_4.4.4-4_i386.deb
lib64gfortran3_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64gfortran3_4.4.4-4_i386.deb
lib64gomp1-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64gomp1-dbg_4.4.4-4_i386.deb
lib64gomp1_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64gomp1_4.4.4-4_i386.deb
lib64mudflap0-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64mudflap0-dbg_4.4.4-4_i386.deb
lib64mudflap0_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64mudflap0_4.4.4-4_i386.deb
lib64objc2-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64objc2-dbg_4.4.4-4_i386.deb
lib64objc2_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64objc2_4.4.4-4_i386.deb
lib64stdc++6-4.4-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64stdc++6-4.4-dbg_4.4.4-4_i386.deb
lib64stdc++6_4.4.4-4_i386.deb
  to main/g/gcc-4.4/lib64stdc++6_4.4.4-4_i386.deb
libgcc1-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libgcc1-dbg_4.4.4-4_i386.deb
libgcc1_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libgcc1_4.4.4-4_i386.deb
libgfortran3-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libgfortran3-dbg_4.4.4-4_i386.deb
libgfortran3_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libgfortran3_4.4.4-4_i386.deb
libgomp1-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libgomp1-dbg_4.4.4-4_i386.deb
libgomp1_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libgomp1_4.4.4-4_i386.deb
libmudflap0-4.4-dev_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libmudflap0-4.4-dev_4.4.4-4_i386.deb
libmudflap0-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libmudflap0-dbg_4.4.4-4_i386.deb
libmudflap0_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libmudflap0_4.4.4-4_i386.deb
libobjc2-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libobjc2-dbg_4.4.4-4_i386.deb
libobjc2_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libobjc2_4.4.4-4_i386.deb
libstdc++6-4.4-dbg_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libstdc++6-4.4-dbg_4.4.4-4_i386.deb
libstdc++6-4.4-dev_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libstdc++6-4.4-dev_4.4.4-4_i386.deb
libstdc++6-4.4-doc_4.4.4-4_all.deb
  to main/g/gcc-4.4/libstdc++6-4.4-doc_4.4.4-4_all.deb
libstdc++6-4.4-pic_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libstdc++6-4.4-pic_4.4.4-4_i386.deb
libstdc++6_4.4.4-4_i386.deb
  to main/g/gcc-4.4/libstdc++6_4.4.4-4_i386.deb
protoize_4.4.4-4_i386.deb
  to main/g/gcc-4.4/protoize_4.4.4-4_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 582787@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <doko@debian.org> (supplier of updated gcc-4.4 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 ftpmaster@debian.org)


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

Format: 1.8
Date: Wed, 02 Jun 2010 23:41:12 +0200
Source: gcc-4.4
Binary: gcc-4.4-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1 libn32gcc1-dbg gcc-4.4 gcc-4.4-multilib gcc-4.4-hppa64 gcc-4.4-spu g++-4.4-spu gfortran-4.4-spu cpp-4.4 gcc-4.4-locales g++-4.4 g++-4.4-multilib libmudflap0 libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg libn32mudflap0 libn32mudflap0-dbg libmudflap0-4.4-dev libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg protoize gobjc++-4.4 gobjc++-4.4-multilib gobjc-4.4 gobjc-4.4-multilib libobjc2 libobjc2-dbg lib64objc2 lib64objc2-dbg lib32objc2 lib32objc2-dbg libn32objc2 libn32objc2-dbg gfortran-4.4 gfortran-4.4-multilib libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libstdc++6-4.4-dev libstdc++6-4.4-pic libstdc++6-4.4-dbg
 lib32stdc++6-4.4-dbg lib64stdc++6-4.4-dbg libn32stdc++6-4.4-dbg libstdc++6-4.4-doc gcc-4.4-soft-float fixincludes
 gcc-4.4-source
Architecture: source all i386
Version: 4.4.4-4
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description: 
 cpp-4.4    - The GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.4    - The GNU C++ compiler
 g++-4.4-multilib - The GNU C++ compiler (multilib files)
 g++-4.4-spu - SPU cross-compiler (C++ compiler)
 gcc-4.4    - The GNU C compiler
 gcc-4.4-base - The GNU Compiler Collection (base package)
 gcc-4.4-hppa64 - The GNU C compiler (cross compiler for hppa64)
 gcc-4.4-locales - The GNU C compiler (native language support files)
 gcc-4.4-multilib - The GNU C compiler (multilib files)
 gcc-4.4-soft-float - The soft-floating-point gcc libraries (arm)
 gcc-4.4-source - Source of the GNU Compiler Collection
 gcc-4.4-spu - SPU cross-compiler (preprocessor and C compiler)
 gfortran-4.4 - The GNU Fortran 95 compiler
 gfortran-4.4-multilib - The GNU Fortran 95 compiler (multilib files)
 gfortran-4.4-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.4 - The GNU Objective-C++ compiler
 gobjc++-4.4-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.4  - The GNU Objective-C compiler
 gobjc-4.4-multilib - The GNU Objective-C compiler (multilib files)
 lib32gcc1  - GCC support library (32 bit Version)
 lib32gcc1-dbg - GCC support library (debug symbols)
 lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit debug symbol
 lib32gomp1 - GCC OpenMP (GOMP) support library (32bit)
 lib32gomp1-dbg - GCC OpenMP (GOMP) support library (32 bit debug symbols)
 lib32mudflap0 - GCC mudflap shared support libraries (32bit)
 lib32mudflap0-dbg - GCC mudflap shared support libraries (32 bit debug symbols)
 lib32objc2 - Runtime library for GNU Objective-C applications (32bit)
 lib32objc2-dbg - Runtime library for GNU Objective-C applications (32 bit debug sy
 lib32stdc++6 - The GNU Standard C++ Library v3 (32 bit Version)
 lib32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran3 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug symbols
 lib64gomp1 - GCC OpenMP (GOMP) support library (64bit)
 lib64gomp1-dbg - GCC OpenMP (GOMP) support library (64bit debug symbols)
 lib64mudflap0 - GCC mudflap shared support libraries (64bit)
 lib64mudflap0-dbg - GCC mudflap shared support libraries (64 bit debug symbols)
 lib64objc2 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc2-dbg - Runtime library for GNU Objective-C applications (64 bit debug sy
 lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libgcc1    - GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgcc2    - GCC support library
 libgcc2-dbg - GCC support library (debug symbols)
 libgcc4    - GCC support library
 libgcc4-dbg - GCC support library (debug symbols)
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgomp1   - GCC OpenMP (GOMP) support library
 libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols)
 libmudflap0 - GCC mudflap shared support libraries
 libmudflap0-4.4-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran3 - Runtime library for GNU Fortran applications (n32)
 libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols)
 libn32gomp1 - GCC OpenMP (GOMP) support library (n32)
 libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols)
 libn32mudflap0 - GCC mudflap shared support libraries (n32)
 libn32mudflap0-dbg - GCC mudflap shared support libraries (n32 debug symbols)
 libn32objc2 - Runtime library for GNU Objective-C applications (n32)
 libn32objc2-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo
 libn32stdc++6 - The GNU Standard C++ Library v3 (n32)
 libn32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libobjc2   - Runtime library for GNU Objective-C applications
 libobjc2-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libstdc++6 - The GNU Standard C++ Library v3
 libstdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.4-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.4-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.4-pic - The GNU Standard C++ Library v3 (shared library subset kit)
 protoize   - Create/remove ANSI prototypes from C code
Closes: 582787
Changes: 
 gcc-4.4 (4.4.4-4) unstable; urgency=medium
 .
   * Update to SVN 20100602 from the gcc-4_4-branch (r160193).
     - Fix PR c++/43555, PR fortran/44360.
   * Don't bother with un-normalized paths in .la files, just remove them.
   * debian/locale-gen: Update locales needed for the libstdc++-v3 testsuite.
   * If libstdc++6 is built from newer gcc-4.x source, run the libstdc++-v3
     testsuite against the installed lib too.
   * Configure with --enable-secureplt on powerpcspe.
   * Fix PR target/44261, taken from the trunk. Closes: #582787.
   * Apply proposed powerpc backport for PR target/44169.
   * On ix86, pass -mtune=generic32 in 32bit mode to the assembler, when
     configured for i586-linux-gnu or i686-linux-gnu.
Checksums-Sha1: 
 74f4558b15e88cca40b350d8efb035a6ec88e31d 3563 gcc-4.4_4.4.4-4.dsc
 ebdc73afe2c37fa5394eba2d383f6a592b62d3ab 690676 gcc-4.4_4.4.4-4.diff.gz
 c79559baebd40455c86253806b5f4b5a4e6d8c54 50239088 gcc-4.4-source_4.4.4-4_all.deb
 6817e62072ee82127164c81509c4349774483025 16357738 libstdc++6-4.4-doc_4.4.4-4_all.deb
 6a4085cbff61b5b7c47a35ed026f011d658aa46f 2298618 gcc-4.4-locales_4.4.4-4_all.deb
 3dd879e06e2cd55876183a3696e06c740743528d 117278 gcc-4.4-base_4.4.4-4_i386.deb
 4cbc1cfcc8d4c5f404b3edf9f1e39e3f35dff05d 55156 libgcc1_4.4.4-4_i386.deb
 486d9acb19ca5cd067d46691b073755475d6d26b 79212 libgcc1-dbg_4.4.4-4_i386.deb
 fece708b2ce0e057e1a52b1d4bea7364b9aedd93 44932 lib64gcc1_4.4.4-4_i386.deb
 f9e2050a700310f60b022d71cb72ef606eb2671d 83128 lib64gcc1-dbg_4.4.4-4_i386.deb
 30c239722d5ec5767fcb04154ad3304f0ad43b87 24054 libgomp1_4.4.4-4_i386.deb
 498faaa642691f147dbefb1e1f96783dd80ae07c 61924 libgomp1-dbg_4.4.4-4_i386.deb
 03d94eb9281c60d4e73d0d852505599877a6da40 25318 lib64gomp1_4.4.4-4_i386.deb
 17b1cc6849a20d2dd68e875278ee51f3190ab289 58854 lib64gomp1-dbg_4.4.4-4_i386.deb
 59e8db9b0f39f6615fd7a209ead282f0b83dda5c 3744632 cpp-4.4_4.4.4-4_i386.deb
 96daddbc531a7e26eed64d0123dad28c3db85472 39984 protoize_4.4.4-4_i386.deb
 d86d7d1712404fba238ec4007691fe32fc41cdbb 59000 fixincludes_4.4.4-4_i386.deb
 5f0980de84ac0da6b4f69d8de4584a29d08a92c3 215244 libmudflap0-4.4-dev_4.4.4-4_i386.deb
 cafa93d1e16d2983bf501f76d8abd8034dc087bd 81942 libmudflap0_4.4.4-4_i386.deb
 06d93b4bb97aec2befd022295d243b29725c0795 120118 libmudflap0-dbg_4.4.4-4_i386.deb
 ebefbeef6b1848cc094f7506dd15fda896f190ed 98092 lib64mudflap0_4.4.4-4_i386.deb
 143a2308b7cf215efa0e06830914f7f16168b7f0 122384 lib64mudflap0-dbg_4.4.4-4_i386.deb
 dc96d3515b75108738f22ebe94a9a48eeed88a96 870 gobjc++-4.4-multilib_4.4.4-4_i386.deb
 976261ea952179a4e9eae87af08c4a515c51efc4 4011730 gobjc++-4.4_4.4.4-4_i386.deb
 f10a73bd9652231bfa152ede55adbaa43c8a3685 185578 gobjc-4.4-multilib_4.4.4-4_i386.deb
 286269007880f51f4f357d6f46f889ff60a5d580 3885700 gobjc-4.4_4.4.4-4_i386.deb
 964490cbc24bf482fc22d8dddd37bcc5b533888e 152132 libobjc2_4.4.4-4_i386.deb
 67a4cbc39ee4376ad329874603ae4e2bb1d18ee6 268246 libobjc2-dbg_4.4.4-4_i386.deb
 ca15a95693f5bea82e26189b96db455867faa096 160584 lib64objc2_4.4.4-4_i386.deb
 0bacad1b59c7b0d76ce00eecbb9f1fee7b297805 278540 lib64objc2-dbg_4.4.4-4_i386.deb
 e0b66b5a2689a53a80010fbbd0ab87dfe536e3ff 1054496 g++-4.4-multilib_4.4.4-4_i386.deb
 db173ca2e290cc83eed7ba293e4fe00d33aad471 5373812 g++-4.4_4.4.4-4_i386.deb
 a851158ceb01ea4a5e3cffd0a4d17d2bdbfb9de3 347132 libstdc++6_4.4.4-4_i386.deb
 7ddcb7339a702d0fffe2d49f862a23aa645701d9 341106 lib64stdc++6_4.4.4-4_i386.deb
 672d71b03d45c6b4b8ae8b780d12db3c6cf3cff1 6533882 lib64stdc++6-4.4-dbg_4.4.4-4_i386.deb
 caca8a42f3d44f680d8f7803d15b4de6e40d5393 1528104 libstdc++6-4.4-dev_4.4.4-4_i386.deb
 ebcde945a439225bc5a3118fcee84bb7ed422807 498252 libstdc++6-4.4-pic_4.4.4-4_i386.deb
 1de1eebfc902a8de63e365d485414225f4905b49 3875416 libstdc++6-4.4-dbg_4.4.4-4_i386.deb
 d9d24908aa4bff3e85ee90eb27a7c73301db56e1 237878 libgfortran3_4.4.4-4_i386.deb
 a0c504f2eb0d8e2eb92f5219d483300ef4a7543c 389950 libgfortran3-dbg_4.4.4-4_i386.deb
 696d13d36fb54bb1640efe58333c83c2c226da6f 291494 lib64gfortran3_4.4.4-4_i386.deb
 65bc2793f432b0e458fdc2d0bba060ba9819cf1e 501180 lib64gfortran3-dbg_4.4.4-4_i386.deb
 0a9c8d890147c97a261aa1359595d20a7a093da0 335322 gfortran-4.4-multilib_4.4.4-4_i386.deb
 216a46ecbc865d0d3546e60db5db0623c3f8fa2a 4241928 gfortran-4.4_4.4.4-4_i386.deb
 35fc75974b31cf176026bf6445da5b134fdc436c 2204766 gcc-4.4-multilib_4.4.4-4_i386.deb
 67d81d0516390f23fd202bb9866214a00f760a4f 2791654 gcc-4.4_4.4.4-4_i386.deb
Checksums-Sha256: 
 d6303171358b4d4dc67485b046701af2ad7b21681f2e18920f682250ae372e0e 3563 gcc-4.4_4.4.4-4.dsc
 921bbfb653f290648bd3c84a978b79a5049e52d5b248155729575fc180843b28 690676 gcc-4.4_4.4.4-4.diff.gz
 89a1abb0916b8fe97a858d3169d5516afa154de321a29fd01d3ffab6815aec17 50239088 gcc-4.4-source_4.4.4-4_all.deb
 3c6b4b35c279ea295022246a760325aedfd757dbf6604b5f1d3ab8ca82239f5f 16357738 libstdc++6-4.4-doc_4.4.4-4_all.deb
 8cd09d101f114f6c362e5e6ace0300d895fc2b56dd82441d033cc169ea8da0ba 2298618 gcc-4.4-locales_4.4.4-4_all.deb
 2f68cef7f96ceec90d03847d9a9f0373f1a1d0acd9e08c2e8bc93a1073df1e54 117278 gcc-4.4-base_4.4.4-4_i386.deb
 f0ef21d733a70b0089a79556cb8d79c92149f6369a4e5a1ccea8ca0ad3bf321e 55156 libgcc1_4.4.4-4_i386.deb
 f1127af7f2ac60ce620dca0131667dbf2204b13c85bbee006ec64adc6f171ac3 79212 libgcc1-dbg_4.4.4-4_i386.deb
 b6e6f41cac8951ea00df61138e4afbf9ce5d5f44b4d1fa8d5c5ca23206f42dc2 44932 lib64gcc1_4.4.4-4_i386.deb
 3887de04e5ecaa564dc2f019bb167252d64ab83bb0397d029f0e50a86ac35113 83128 lib64gcc1-dbg_4.4.4-4_i386.deb
 3d68b0ac8d61a9506abd9676e0e619015bbf53de93965aa993b693b24fab9530 24054 libgomp1_4.4.4-4_i386.deb
 237ea4b02e5a3f0a6247853dec39099854e2dcafad6be626fb628b2a48bdc9c4 61924 libgomp1-dbg_4.4.4-4_i386.deb
 cb111b979ce1e08c4ef40f38a8818a62ba6d7688d282f650b72b64ec3470352f 25318 lib64gomp1_4.4.4-4_i386.deb
 fa1658ec2c7ced4695a65d094ec8fe2232f9e5edafad9106ba77c16ccec5967d 58854 lib64gomp1-dbg_4.4.4-4_i386.deb
 6bd2b5c22006e1207e54a1494638372b30d01f927258778861526bdab7ff36ea 3744632 cpp-4.4_4.4.4-4_i386.deb
 4e8e5c7477fa08c3c4f1d1eb4bfd92d4e4bf5dd1ef093df17e173abd2db29dd5 39984 protoize_4.4.4-4_i386.deb
 0ae790cd12de8f177d26457125bc34511bbe151ca129c68aba395f40f0eda550 59000 fixincludes_4.4.4-4_i386.deb
 3b5502a04223a4443f3d69d52b41ac25b203e13ae7cac08df11a9da1bcd48b44 215244 libmudflap0-4.4-dev_4.4.4-4_i386.deb
 1e7a9da260ae828c3fc30834d11ad1b7ee0add07896d143b62caf6ea1a185469 81942 libmudflap0_4.4.4-4_i386.deb
 cd810efef3b1d6295340fcf75eeee8c3f667f7be89dc8b280edf8f741d562c96 120118 libmudflap0-dbg_4.4.4-4_i386.deb
 dd6507f91934dc3174b385cfe650ce15474983726fd377977bfb31b94d964a3b 98092 lib64mudflap0_4.4.4-4_i386.deb
 d5fa76b2ca26b35e38c0f191264a0fe0194e1df39226cacabbadb46ecd27591d 122384 lib64mudflap0-dbg_4.4.4-4_i386.deb
 72b0df18181ca3bfb7020207d8b2da2d9bf46ba8fc42e5e8ff0800442f529554 870 gobjc++-4.4-multilib_4.4.4-4_i386.deb
 3a40c71b3c67bc1900f27d2e8e01411d2a6b698c63790aca4360062af199abac 4011730 gobjc++-4.4_4.4.4-4_i386.deb
 b86e17ef66d7a0c0728f348b980f52060c5cf38ffd3c3166e1a9bc794e419469 185578 gobjc-4.4-multilib_4.4.4-4_i386.deb
 5157523e33fc54368eb00848c962c8034790a755f7545a8954faea69d3bd4665 3885700 gobjc-4.4_4.4.4-4_i386.deb
 5eee5de5f4b07cfc22a9835ffc164556729d2702f82908540097b00587e1f5e2 152132 libobjc2_4.4.4-4_i386.deb
 71478eda0edef9048249c4306240141c9484c4c7e64cc0fac61975d5f4e6951a 268246 libobjc2-dbg_4.4.4-4_i386.deb
 6487325af7fdfa6bf0869c50a8512efeb6ab4a597e586bcbb11ef6bea2025bf9 160584 lib64objc2_4.4.4-4_i386.deb
 1b50e12f917637f3ac74172063b98ecae19f3c5ab542e7f4a51d0fa33aa1b4f0 278540 lib64objc2-dbg_4.4.4-4_i386.deb
 de61d7faae97c55ae69bcfc205eaf34ad71c105ca303dc103b5af1b91fd7ad95 1054496 g++-4.4-multilib_4.4.4-4_i386.deb
 6e1b7223a891db20b7e4863ad0232be3139d799c8e22f1e5761be96af26d945b 5373812 g++-4.4_4.4.4-4_i386.deb
 c1bd424cfe605ae3b070db92364d447aa666403fc6c24abcd52dc945f73f2fdd 347132 libstdc++6_4.4.4-4_i386.deb
 7f5d9c0484d829cb6c42e4d43ed30d4443356bb7853fa4498c536cd562db41fa 341106 lib64stdc++6_4.4.4-4_i386.deb
 7c0bc1ea0629ba6aab6c0fbc9d2f7f7b8428417ff77986d90507d2a45b76586f 6533882 lib64stdc++6-4.4-dbg_4.4.4-4_i386.deb
 99bb2547a943a9db37da36c9b394f2ee0fc3b57f5d6cdb335fac07f853a6368e 1528104 libstdc++6-4.4-dev_4.4.4-4_i386.deb
 1d887058788a78a36ee07bd9b992d3cac12c9b89761a193e3bdaeb657ab01e7e 498252 libstdc++6-4.4-pic_4.4.4-4_i386.deb
 dd248ccada78945b0da9e758f672e705885f02de35024adfaa58f25b7807fb20 3875416 libstdc++6-4.4-dbg_4.4.4-4_i386.deb
 e22794410a9e575316cbb9031086b022fd484b4ad6f0884e4f03e096d7688067 237878 libgfortran3_4.4.4-4_i386.deb
 29dcc1f49910f33e51eab40578b487333a456a1e1b708fde9de380ea9407a2a4 389950 libgfortran3-dbg_4.4.4-4_i386.deb
 9d6255846619794cc6c9a0203304f5372c34588bcd746da1cab59172b1d3b520 291494 lib64gfortran3_4.4.4-4_i386.deb
 e2ab3356f605673adda9ac449e2f95a0c51ecccb3ae4aaca78ec08ef2a6c998b 501180 lib64gfortran3-dbg_4.4.4-4_i386.deb
 26fce0a0611b5566309c921346300255aaa42cfe02b337129e7a8651e447515c 335322 gfortran-4.4-multilib_4.4.4-4_i386.deb
 7bdbac0159d268edca118b112a832b4c0c3bb57c2b77d7614766fe93105d5098 4241928 gfortran-4.4_4.4.4-4_i386.deb
 b2df63d0dc37a89ab92d88d0a2791db2a49e40c983f9d3e79ac50be58a167be8 2204766 gcc-4.4-multilib_4.4.4-4_i386.deb
 f777feecd8e32f37277b0d39929f701a66c0f68a7d2e34c661e95251ef671202 2791654 gcc-4.4_4.4.4-4_i386.deb
Files: 
 9065aa1a6e1203aa914ad177adb0945a 3563 devel optional gcc-4.4_4.4.4-4.dsc
 6ac13f371cdc871391c92f1839649495 690676 devel optional gcc-4.4_4.4.4-4.diff.gz
 06decb729d2158458de92d0c7044aab8 50239088 devel optional gcc-4.4-source_4.4.4-4_all.deb
 9f7d806181c043419f2fd4b67cec48be 16357738 doc optional libstdc++6-4.4-doc_4.4.4-4_all.deb
 2751d3ea47d37b3afa19dbfc4ee4f1b5 2298618 devel optional gcc-4.4-locales_4.4.4-4_all.deb
 ebc9f61483ce2772c6e27b178ec2f6b8 117278 libs required gcc-4.4-base_4.4.4-4_i386.deb
 bbbb64d2974e9326b033fcb4c46a4ae8 55156 libs required libgcc1_4.4.4-4_i386.deb
 c9db1b79231bdae404e018bf97159b51 79212 debug extra libgcc1-dbg_4.4.4-4_i386.deb
 fdf3e206cb53d05e6c14dadc643cf0df 44932 libs optional lib64gcc1_4.4.4-4_i386.deb
 c037b27493464450ca7f8edd411e26cf 83128 debug extra lib64gcc1-dbg_4.4.4-4_i386.deb
 d2853707a92b0ca4a374e0b188b1d932 24054 libs optional libgomp1_4.4.4-4_i386.deb
 cd871977f23927cf19746599523b1982 61924 debug extra libgomp1-dbg_4.4.4-4_i386.deb
 7c09e3ac008172bb2da630c6ab1ae368 25318 libs optional lib64gomp1_4.4.4-4_i386.deb
 f4caccbeb8d703c65c29245ab8d9d14d 58854 debug extra lib64gomp1-dbg_4.4.4-4_i386.deb
 c9696ef6a6f73412cbb3650a2ba144af 3744632 interpreters optional cpp-4.4_4.4.4-4_i386.deb
 387411d0c424ab46e49fdfb50675c00d 39984 devel optional protoize_4.4.4-4_i386.deb
 9e5ae287ea3ec52313de5928d4e8e784 59000 devel optional fixincludes_4.4.4-4_i386.deb
 e971adef218c217d3348bfa8b909e167 215244 libdevel optional libmudflap0-4.4-dev_4.4.4-4_i386.deb
 8b1bae2c7a124aca9a597c3f3c42f131 81942 libs optional libmudflap0_4.4.4-4_i386.deb
 37e598b0797e269deb95352cfd5b950a 120118 debug extra libmudflap0-dbg_4.4.4-4_i386.deb
 7f3b5cb5640a3133ab58b2f19a58d47c 98092 libs optional lib64mudflap0_4.4.4-4_i386.deb
 06a7564a9d148625f12468562f15cb46 122384 debug extra lib64mudflap0-dbg_4.4.4-4_i386.deb
 8d80baadd2d20d3414d853f0063e7858 870 devel optional gobjc++-4.4-multilib_4.4.4-4_i386.deb
 ce8c1413cf2f93b99a10a6a745152380 4011730 devel optional gobjc++-4.4_4.4.4-4_i386.deb
 3ed0873a0bdbe3fd13ed62554138eb46 185578 devel optional gobjc-4.4-multilib_4.4.4-4_i386.deb
 4023ed6bf5bc530817fa65af548285c5 3885700 devel optional gobjc-4.4_4.4.4-4_i386.deb
 b301931990623ff9e670a92a7ba8618c 152132 libs optional libobjc2_4.4.4-4_i386.deb
 7a20c136bb27e315b2811288b997db07 268246 debug extra libobjc2-dbg_4.4.4-4_i386.deb
 427a4d1f1ad08420cf3eea7fe70d64e0 160584 libs optional lib64objc2_4.4.4-4_i386.deb
 8b14eaa53639b07147f43c8554c94159 278540 debug extra lib64objc2-dbg_4.4.4-4_i386.deb
 98c34f55a9992fcb26d8454e15e69f14 1054496 devel optional g++-4.4-multilib_4.4.4-4_i386.deb
 2d8c2b3a85f656253c1aa35d104ed7c6 5373812 devel optional g++-4.4_4.4.4-4_i386.deb
 99bb55d86d587dbfa78df7d6f5fe91c7 347132 libs required libstdc++6_4.4.4-4_i386.deb
 4026d0e17385cd7da75e75621a67767a 341106 libs optional lib64stdc++6_4.4.4-4_i386.deb
 696c2d3f279c629457cc040a415ba60c 6533882 debug extra lib64stdc++6-4.4-dbg_4.4.4-4_i386.deb
 5c30cc557b1d561c4fec748de708c675 1528104 libdevel optional libstdc++6-4.4-dev_4.4.4-4_i386.deb
 33fe46327870d1e17eaca28943b90a7c 498252 libdevel extra libstdc++6-4.4-pic_4.4.4-4_i386.deb
 01a0a3223089ff2071786382cc56741b 3875416 debug extra libstdc++6-4.4-dbg_4.4.4-4_i386.deb
 290fdc5a86bd501e5714966a63cc9bd7 237878 libs optional libgfortran3_4.4.4-4_i386.deb
 dd812fda39f335a3efb1c27de28886ff 389950 debug extra libgfortran3-dbg_4.4.4-4_i386.deb
 0bf406ea1c976648c6b8ed9758f36518 291494 libs optional lib64gfortran3_4.4.4-4_i386.deb
 e34939e5606ea2cf0e891bb3a3b491f8 501180 debug extra lib64gfortran3-dbg_4.4.4-4_i386.deb
 5982df631eab66818b6cc16245294c32 335322 devel optional gfortran-4.4-multilib_4.4.4-4_i386.deb
 9a4ce36baaf268d172a8b3a228e1be5b 4241928 devel optional gfortran-4.4_4.4.4-4_i386.deb
 a9b34df7fe9c1b3149eb2d8e57f9237b 2204766 devel optional gcc-4.4-multilib_4.4.4-4_i386.deb
 e37df2cb2b66ff115a739250e5f43983 2791654 devel optional gcc-4.4_4.4.4-4_i386.deb

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

iEYEARECAAYFAkwHLQsACgkQStlRaw+TLJxIOgCghTnwfP9FD4YJtvhnoTa1oWZS
SfQAn0HLM2NJeBouGyxv0xLOFKXWQaVy
=Z7lC
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: