Bug#442950: marked as done (g++-4.2: -Wwrite-strings getting turned on for no aparent reason)

2007-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2007 08:59:28 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#442950: g++-4.2: -Wwrite-strings getting turned on for no 
aparent reason
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)

--- Begin Message ---
Package: g++-4.2
Version: 4.2.1-4
Severity: minor

Hi. Sometime in the last month or so, g++ has started spitting out at me a
bunch of "warning: deprecated conversion from string constant to ‘char*’"
messages. This apparently comes from -Wwrite-strings. However, according to the
man/info pages, this option shouldn't be turned on unless explicitly requrested
(not even -Wall turns it on). My makefile certainly certainly isn't turning it
on, and I don't get this message when compiling in Fedora or OS/X. I've looked
the the changelog.Debian and haven't seen anything to explain this. I can turn
it off with a CXXFLAGS=-Wno-write-strings, but it's a pain to remeber this each
time so I'd really appreciate it if you could fix this. :)

Thanks, 

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (110, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21cavy1
Locale: LANG=he_IL.UTF-8, LC_CTYPE=he_IL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages g++-4.2 depends on:
ii  gcc-4.2   4.2.1-4The GNU C compiler
ii  gcc-4.2-base  4.2.1-4The GNU Compiler Collection (base 
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libstdc++6-4.2-dev4.2.1-4The GNU Standard C++ Library v3 (d

g++-4.2 recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Itai Seggev writes:
> Package: g++-4.2
> Version: 4.2.1-4
> Severity: minor
> 
> Hi. Sometime in the last month or so, g++ has started spitting out at me a
> bunch of "warning: deprecated conversion from string constant to --- End Message ---


Bug#442918: marked as done (-fvisibility=hidden should not affect symbols declared with extern)

2007-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2007 09:51:24 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#442918: -fvisibility=hidden should not affect symbols 
declared with extern
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)

--- Begin Message ---
Package: gcc
Version: 4:4.2.1-6
Severity: normal

--- Please enter the report below this line. ---

If I use -fvisibility=hidden, I expect symbols declared with "extern"
not be affected by it, as per the manpage (gcc-4.2 in gcc-4.2-doc).

"extern declarations are not affected by -fvisibility, so a lot of
code can be recompiled with -fvisibility=hidden with no modifications"

Yet a very simple testcase shows that even symbols marked extern are affected.
Tested with gcc-4.2, and gcc-4.1.

$ cat dso.c
extern int symbol(int x);
extern int symbol(int x)
{
}

$ gcc -fPIC -DPIC -fvisibility=hidden -shared dso.c -o dso.so &&
readelf -a dso.so | grep symbol
49: 04cc 9 FUNCLOCAL  HIDDEN   11 symbol

If I link an application that uses that symbol, the link will fail,
since the symbol is local and hidden.

Adding __attribute__((visibility("default"))) works as expected
(producing a DEFAULT symbol).

Either the manpage, or the behaviour should be changed.

Fixing the manpage is for sure the easiest way, but affecting externs
symbols by visibility=hidden is nonsense, since those are suppposed to
be the API functions that you "export".

Its the only (standard) way I can mark a functions as a globally
visible API. Also programs using symbols declared as extern expect
(and for good reason) to be able to successfully link with a DSO
containing that symbol.

Alternatives described at http://gcc.gnu.org/wiki/Visibility work of
course, but they require code changes. Not at all the "recompile with
no modifications" advertised by the manpage.
I should have another
-fvisibility-hidden-make-extern-behave-the-way-its-supposed-to-be flag
if the behaviour for "extern" and -fvisibility=hidden is to stay the
same.

But if this is to be fixed in the behaviour, then it should be
backported to gcc-4.1 too IMHO.


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.23-rc6-hrt1-gc87ce658-dirty

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org
  500 unstableftp.iasi.roedu.net
  500 testing ftp.iasi.roedu.net
  500 feisty  wine.budgetdedicated.com
  500 etchdebian.beryl-project.org
1 experimentalftp.iasi.roedu.net

--- Package information. ---
Depends   (Version) | Installed
===-+-===
cpp  (>= 4:4.2.1-6) | 4:4.2.1-6
gcc-4.2(>= 4.2.1-3) | 4.2.1-5


--- End Message ---
--- Begin Message ---
=?UTF-8?Q? "T=C3=B6r=C3=B6k?= Edvin" writes:
> Package: gcc
> Version: 4:4.2.1-6
> Severity: normal
> 
> --- Please enter the report below this line. ---
> 
> If I use -fvisibility=hidden, I expect symbols declared with "extern"
> not be affected by it, as per the manpage (gcc-4.2 in gcc-4.2-doc).
> 
> "extern declarations are not affected by -fvisibility, so a lot of
> code can be recompiled with -fvisibility=hidden with no modifications"
> 
> Yet a very simple testcase shows that even symbols marked extern are affected.
> Tested with gcc-4.2, and gcc-4.1.
> 
> $ cat dso.c
> extern int symbol(int x);
> extern int symbol(int x)
> {
> }

both the man page and the compiler are correct; remove the definition
of `symbol'.

extern int symbol(int x);
static int foo(int x) { return symbol(x); }

$ gcc -fPIC -DPIC -fvisibility=hidden -shared dso.c -o dso.so &&
readelf -a dso.so | grep symbol
 5:  0 NOTYPE  GLOBAL DEFAULT  UND symbol
55:  0 NOTYPE  GLOBAL DEFAULT  UND symbol

--- End Message ---


Re: Bug#442040: coreutils: FTBFS on PPC in seq test suite

2007-09-18 Thread Michael Stone

On Tue, Sep 18, 2007 at 04:20:25PM +1000, Tony Breeds wrote:

On Sat, Sep 15, 2007 at 04:14:34PM -0400, Michael Stone wrote:

Ok, can anyone test what happens with gcc 4.1? (I kinda suspect some 
kind of wacky code generation bug on ppc, because it works fine on alpha 
amd64 hppa i386 ia64 mipsel sparc, and seq just doesn't do anything 
particularly complicated.)


Ran a couple of quick compile tests, gcc-4.0 works gcc-4.1 and gcc-4.2
fail.  Haven't had time to track down what the difference in the
generated code is though.

In the short term, can the build famr be forced to use gcc-4.0 ?


Comments from gcc people?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[Bug rtl-optimization/33410] [4.2/4.3 regression] ICE in iv_analyze_expr, at loop-iv.c:934

2007-09-18 Thread belyshev at depni dot sinp dot msu dot ru


--- Comment #2 from belyshev at depni dot sinp dot msu dot ru  2007-09-18 
15:59 ---
Confirmed.
Also breaks bootstrap if CFLAGS is set to -O3.
I couldn't reproduce this with 4.1 so "reported against = 4.1.0" is probably
typo.
Can be reproduced in a cross compiler.


-- 

belyshev at depni dot sinp dot msu dot ru changed:

   What|Removed |Added

 CC||belyshev at depni dot sinp
   ||dot msu dot ru
 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1
  GCC build triplet|alpha-linux-gnu |
   GCC host triplet|alpha-linux-gnu |
   Keywords||build
  Known to work||4.1.2
   Last reconfirmed|-00-00 00:00:00 |2007-09-18 15:59:38
   date||
Summary|ICE in iv_analyze_expr, at  |[4.2/4.3 regression] ICE in
   |loop-iv.c:934   |iv_analyze_expr, at loop-
   ||iv.c:934
Version|4.1.0   |4.2.0


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

--- You are receiving this mail because: ---
You reported the bug, or are watching the reporter.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#176064: Serious business in a sphere of financial services. (no investment reqired)

2007-09-18 Thread derrik angel

Big international commercial organization is seeking of talented, honest, 
reliable representatives in different regions. Because of developing of our 
business the organization is proposing to you to become its part. You can work 
part time or full time.
Requirements: 
Internet Connection 
Basic knowledge of PC 
Honesty 
Reliability

Basic knowledge of marketing is a plus.
If you want to get an opportunity to make a career, to earn some extra money, 
to gain new experience during the work, you should send us the following 
information to: [EMAIL PROTECTED]
1) Full name 
2) Contact phone numbers
3) Languages 
4) Part time job/Full time
No investments needed to start working with us. 
The preference is given to employees with knowledge of foreign languages.

Thank you and we are looking forward to cooperate in long term base with you.

P.S. This job is not associated with "money muls"


"Whether nanotechnology had ever showed up or not, electronics would have gotten 
there anyway," says Professor Saraswat. For the past four decades, the number of 
transistors that can be put on a chip, or equivalently, the number of information 
processing events that can be done per chip, has doubled every twenty-two months; 
concomitantly, the cost per processing event has dropped. Following this trend called 
Moore's Law, microelectronics has steadily settled into nanoelectronics in the past 
decade.





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Results for 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) testsuite on alpha-unknown-linux-gnu

2007-09-18 Thread Matthias Klose
LAST_UPDATED: Sun Sep 16 07:54:18 UTC 2007 (revision 128522)

Native configuration is alpha-unknown-linux-gnu

=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes1108
# of unsupported tests  8
=== libgomp tests ===


Running target unix

=== libgomp Summary ===

# of expected passes1607
=== libjava tests ===


Running target unix
FAIL: TestClosureGC run
FAIL: pr11951 run
FAIL: natgetargssize.cc compilation
FAIL: natgetlocalvartable.cc compilation
FAIL: natgetstacktrace.cc compilation
FAIL: natevents.cc compilation
FAIL: natgetallthreads.cc compilation
FAIL: natgeterrorname.cc compilation
FAIL: natgetmethodname.cc compilation
FAIL: Array_3 execution - source compiled test
FAIL: Array_3 -findirect-dispatch execution - source compiled test
FAIL: Array_3 -O3 execution - source compiled test
FAIL: Array_3 -O3 -findirect-dispatch execution - source compiled test
FAIL: G19990303_02 execution - source compiled test
FAIL: G19990303_02 -findirect-dispatch execution - source compiled test
FAIL: G19990303_02 -O3 execution - source compiled test
FAIL: G19990303_02 -O3 -findirect-dispatch execution - source compiled test
FAIL: Invoke_1 execution - source compiled test
FAIL: Invoke_1 -findirect-dispatch execution - source compiled test
FAIL: Invoke_1 -O3 execution - source compiled test
FAIL: Invoke_1 -O3 -findirect-dispatch execution - source compiled test
FAIL: PR218 output - source compiled test
FAIL: PR218 -O3 output - source compiled test
FAIL: StackTrace2 execution - source compiled test
FAIL: StackTrace2 -findirect-dispatch execution - source compiled test
FAIL: StackTrace2 -O3 execution - source compiled test
FAIL: StackTrace2 -O3 -findirect-dispatch execution - source compiled test
FAIL: Throw_2 execution - source compiled test
FAIL: Throw_2 -findirect-dispatch execution - source compiled test
FAIL: Throw_2 -O3 execution - source compiled test
FAIL: Throw_2 -O3 -findirect-dispatch execution - source compiled test
FAIL: Throw_3 output - source compiled test
FAIL: Throw_3 -findirect-dispatch output - source compiled test
FAIL: Throw_3 -O3 output - source compiled test
FAIL: Throw_3 -O3 -findirect-dispatch output - source compiled test
FAIL: initexc execution - source compiled test
FAIL: initexc -findirect-dispatch execution - source compiled test
FAIL: initexc -O3 execution - source compiled test
FAIL: initexc -O3 -findirect-dispatch execution - source compiled test
FAIL: invokethrow execution - source compiled test
FAIL: invokethrow -findirect-dispatch output - source compiled test
FAIL: invokethrow -O3 execution - source compiled test
FAIL: invokethrow -O3 -findirect-dispatch output - source compiled test
FAIL: pr83 -findirect-dispatch execution - source compiled test
FAIL: pr83 -O3 -findirect-dispatch execution - source compiled test

=== libjava Summary ===

# of expected passes2464
# of unexpected failures45
# of untested testcases 30
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c++/pass41-frag.cxx execution test
FAIL: libmudflap.c++/pass41-frag.cxx (-static) execution test
FAIL: libmudflap.c++/pass41-frag.cxx ( -O) execution test
FAIL: libmudflap.c++/pass41-frag.cxx (-O2) execution test
FAIL: libmudflap.c++/pass41-frag.cxx (-O3) execution test

=== libmudflap Summary ===

# of expected passes1821
# of unexpected failures5
=== libstdc++ tests ===


Running target unix
FAIL: abi_check
XPASS: 26_numerics/headers/cmath/c99_classification_macros_c.cc (test for 
excess errors)
XPASS: 27_io/fpos/14320-1.cc execution test

=== libstdc++ Summary ===

# of expected passes4541
# of unexpected failures1
# of unexpected successes   2
# of expected failures  56
# of unsupported tests  324
Target: alpha-linux-gnu
gcc version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 

=== g++ tests ===


Running target unix
FAIL: g++.dg/ext/cleanup-10.C execution test
FAIL: g++.dg/ext/cleanup-11.C execution test
FAIL: g++.dg/ext/cleanup-8.C execution test
FAIL: g++.dg/ext/cleanup-9.C execution test
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;
FAIL: g++.dg/torture/type-generic-1.C  -O0  execution test
FAIL: g++.dg/torture/type-generic-1.C  -O1  execution test
FAIL: g++.dg/torture/type-generic-1.C  -O2  execution test
FAIL: g++.dg/torture/type-generic-1.C  -O3 -fomit-frame-pointer  execution test
FAIL: g++.dg/torture/type-generic-1.C  -O3 -g  execution test
FAIL: g++.dg/torture/type-generic-1.C  -Os  execution test

=== g++ Summary ===

# of expected passes16507
# of unexpected failures10
# of unexpected successes   1
# of expected failures  87
# of unsupported tests  134
/build/buildd/

Results for 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) testsuite on hppa-unknown-linux-gnu

2007-09-18 Thread Matthias Klose
LAST_UPDATED: Sun Sep 16 07:54:18 UTC 2007 (revision 128522)

Target: hppa-linux-gnu
gcc version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 

=== acats tests ===
FAIL:   c97307a
FAIL:   cxf3a01

=== acats Summary ===
# of expected passes2313
# of unexpected failures2
Native configuration is hppa-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;
XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not offset: -4B
XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not &x\\[5\\]

=== g++ Summary ===

# of expected passes16534
# of unexpected successes   3
# of expected failures  87
# of unsupported tests  132
/scratch/packages/gcc/snap/gcc-snapshot-20070916/build/gcc/testsuite/g++/../../g++
  version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/990404-1.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/990404-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-2.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-3.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution,  -O3 -g 
XPASS: gcc.dg/torture/builtin-math-4.c  -O0  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O1  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O2  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer -funroll-loops 
 (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -g  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/loop-1.c scan-assembler-times foo 5
XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0

=== gcc Summary ===

# of expected passes43881
# of unexpected failures4
# of unexpected successes   10
# of expected failures  81
# of unresolved testcases   2
# of untested testcases 35
# of unsupported tests  332
/scratch/packages/gcc/snap/gcc-snapshot-20070916/build/gcc/xgcc  version 4.3.0 
20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) 

=== gfortran tests ===


Running target unix
FAIL: gfortran.dg/do_3.F90  -O3 -fomit-frame-pointer  execution test
FAIL: gfortran.dg/do_3.F90  -O3 -fomit-frame-pointer -funroll-loops  execution 
test
FAIL: gfortran.dg/do_3.F90  -O3 -fomit-frame-pointer -funroll-all-loops 
-finline-functions  execution test
FAIL: gfortran.dg/do_3.F90  -O3 -g  execution test

=== gfortran Summary ===

# of expected passes20921
# of unexpected failures4
# of expected failures  8
# of unsupported tests  100
/scratch/packages/gcc/snap/gcc-snapshot-20070916/build/gcc/testsuite/gfortran/../../gfortran
  version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 

=== gnat tests ===


Running target unix

=== gnat Summary ===

# of expected passes297
=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/bitfield-1.mm (internal compiler error)
FAIL: obj-c++.dg/bitfield-1.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/bitfield-1.mm compilation failed to produce executable
FAIL: obj-c++.dg/comp-types-10.mm (internal compiler error)
FAIL: obj-c++.dg/comp-types-10.mm (test for excess errors)
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-2.mm scan-assembler {Vec=ffi}
FAIL: obj-c++.dg/encode-2.mm scan-assembler {Vec=ddi}
FAIL: obj-c++.dg/encode-3.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors)
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-9.mm (internal compiler error)
FAIL: obj-c++.dg/try-catch-9.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/try-catch-9.mm compilation failed to produce executable

=== obj-c++ Summary ===

# of expected passes422
# of unexpected failures15
# of unresolved testcases   4
# of unsupported tests

Results for 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) testsuite on i486-pc-linux-gnu

2007-09-18 Thread Matthias Klose
LAST_UPDATED: Sun Sep 16 07:54:18 UTC 2007 (revision 128522)

Target: i486-linux-gnu
gcc version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 

=== acats tests ===

=== acats Summary ===
# of expected passes2315
# of unexpected failures0
Native configuration is i486-pc-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;
XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not offset: -4B
XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not &x\\[5\\]

=== g++ Summary for unix ===

# of expected passes16634
# of unexpected successes   3
# of expected failures  87
# of unsupported tests  87

Running target unix/-fstack-protector
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;
XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not offset: -4B
XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not &x\\[5\\]

=== g++ Summary for unix/-fstack-protector ===

# of expected passes16634
# of unexpected successes   3
# of expected failures  87
# of unsupported tests  87

=== g++ Summary ===

# of expected passes33268
# of unexpected successes   6
# of expected failures  174
# of unsupported tests  174
/build/buildd/gcc-snapshot-20070916/build/gcc/testsuite/g++/../../g++  version 
4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) 

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/mayalias-2.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-3.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution,  -O3 -g 
FAIL: gcc.dg/dfp/convert-bfp-4.c execution test
FAIL: gcc.dg/dfp/convert-bfp-5.c execution test
XPASS: gcc.dg/torture/builtin-math-4.c  -O0  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O1  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O2  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer -funroll-loops 
 (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -g  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0

=== gcc Summary for unix ===

# of expected passes47087
# of unexpected failures4
# of unexpected successes   9
# of expected failures  154
# of unresolved testcases   2
# of untested testcases 35
# of unsupported tests  263

Running target unix/-fstack-protector
FAIL: gcc.c-torture/compile/limits-blockid.c  -O0  (internal compiler error)
FAIL: gcc.c-torture/compile/limits-blockid.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/execute/mayalias-2.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-3.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution,  -O3 -g 
FAIL: gcc.dg/dfp/convert-bfp-4.c execution test
FAIL: gcc.dg/dfp/convert-bfp-5.c execution test
XPASS: gcc.dg/torture/builtin-math-4.c  -O0  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O1  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O2  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer -funroll-loops 
 (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -g  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0

=== gcc Summary for unix/-fstack-protector ===

# of expected passes47086
# of unexpected failures6
# of unexpected successes   9
# of expected failures  154
# of unresolved testcases   2
# of untested testcases 35
# of unsupported tests  263

=== gcc Summary ===

# of expected passes94173
# of unexpected failures10
# of unexpected successes   18
# of expected failures  308
# of unresolved testcases   4
# of un

Results for 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) testsuite on ia64-unknown-linux-gnu

2007-09-18 Thread Matthias Klose
LAST_UPDATED: Sun Sep 16 07:54:18 UTC 2007 (revision 128522)

Target: ia64-linux-gnu
gcc version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 

=== acats tests ===
FAIL:   cxb3014
FAIL:   cxb3016

=== acats Summary ===
# of expected passes2313
# of unexpected failures2
Native configuration is ia64-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct 
call.* AA transformation on insn

=== g++ Summary ===

# of expected passes15848
# of unexpected failures7
# of unexpected successes   1
# of expected failures  87
# of unsupported tests  129
/build/buildd/gcc-snapshot-20070916/build/gcc/testsuite/g++/../../g++  version 
4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) 

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/mayalias-2.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-3.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution,  -O3 -g 
FAIL: gcc.dg/builtin-apply4.c execution test
FAIL: gcc.dg/pr30643.c scan-assembler-not undefined
XPASS: gcc.dg/torture/builtin-math-4.c  -O0  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O1  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O2  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer -funroll-loops 
 (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -g  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -Os  (test for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c  -O0  compilation 
failed to produce executable
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c  -O1  compilation 
failed to produce executable
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c  -O2  compilation 
failed to produce executable
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c  -O3 
-fomit-frame-pointer  compilation failed to produce executable
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c  -O3 -g  
compilation failed to produce executable
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c  -Os  compilation 
failed to produce executable
FAIL: gcc.dg/torture/fp-int-convert-float128.c  -O0  (test for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c  -O0  compilation failed 
to produce executable
FAIL: gcc.dg/torture/fp-int-convert-float128.c  -O1  (test for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c  -O1  compilation failed 
to produce executable
FAIL: gcc.dg/torture/fp-int-convert-float128.c  -O2  (test for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c  -O2  compilation failed 
to produce executable
FAIL: gcc.dg/torture/fp-int-convert-float128.c  -O3 -fomit-frame-pointer  (test 
for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c  -O3 -fomit-frame-pointer  
compilation failed to produce executable
FAIL: gcc.dg/torture/fp-int-convert-float128.c  -O3 -g  (test for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c  -O3 -g  compilation 
failed to produce executable
FAIL: gcc.dg/torture/fp-int-convert-float128.c  -Os  (test for excess errors)
UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c  -Os  compilation failed 
to produce executable
XPASS: gcc.dg/tree-ssa/loop-1.c scan-assembler-times foo 5
FAIL: gcc.dg/tree-ssa/ssa-fre-4.c scan-tree-dump Replaced \\(char\\) .*with 
XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0
FAIL: gcc.dg/vect/vect-104.c scan-tree-dump-times vectorized 1 loops 0
FAIL: gcc.dg/vect/vect-iv-6.c scan-tree-dump-times vectorized 1 loops 1
FAIL: 

Results for 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) testsuite on mips-unknown-linux-gnu

2007-09-18 Thread Matthias Klose
LAST_UPDATED: Sun Sep 16 07:54:18 UTC 2007 (revision 128522)

Target: mips-linux-gnu
gcc version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 
Native configuration is mips-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;

=== g++ Summary ===

# of expected passes16539
# of unexpected successes   1
# of expected failures  87
# of unsupported tests  131
/build/buildd/gcc-snapshot-20070916/build/gcc/testsuite/g++/../../g++  version 
4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) 

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/builtin-bitops-1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/builtin-bitops-1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O0 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O1 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O2 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -Os 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O0 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O1 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O2 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -Os 
FAIL: gcc.c-torture/execute/mayalias-2.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-3.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution,  -O3 -g 
FAIL: gcc.dg/memcpy-1.c scan-tree-dump-times nasty_local 0
XPASS: gcc.dg/torture/builtin-math-4.c  -O0  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O1  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O2  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer -funroll-loops 
 (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -g  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0
XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0
FAIL: gcc.target/mips/code-readable-1.c (test for excess errors)
ERROR: gcc.target/mips/code-readable-1.c: error executing dg-final: couldn't 
open "code-readable-1.s": no such file or directory
UNRESOLVED: gcc.target/mips/code-readable-1.c: error executing dg-final: 
couldn't open "code-readable-1.s": no such file or directory
FAIL: gcc.target/mips/code-readable-2.c (test for excess errors)
ERROR: gcc.target/mips/code-readable-2.c: error executing dg-final: couldn't 
open "code-readable-2.s": no such file or directory
UNRESOLVED: gcc.target/mips/code-readable-2.c: error executing dg-final: 
couldn't open "code-readable-2.s": no such file or directory
FAIL: gcc.target/mips/code-readable-3.c (test for excess errors)
ERROR: gcc.target/mips/code-readable-3.c: error executing dg-final: couldn't 
open "code-readable-3.s": no such file or directory
UNRESOLVED: gcc.target/mips/code-readable-3.c: error executing dg-final: 
couldn't open "code-readable-3.s": no such file or directory
FAIL: gcc.target/mips/mips16-attributes-2.c (test for excess errors)
FAIL: gcc.target/mips/mips16e-extends.c (test for excess errors)
ERROR: gcc.target/mips/mips16e-extends.c: error executing dg-final: couldn't 
open "mips16e-extends.s": no such file or directory
UNRESOLVED: gcc.target/mips/mips16e-extends.c: error executing dg-final: 
couldn't open "mips16e-extends.s": no such file or directory
FAIL: gcc.target/mips/save-restore-1.c (test for excess errors)
ERROR: gcc.target/mips/save-restore-1.c: error executing dg-final: couldn't 
open "save-restore-1.s": no such file or directory
UNRESOLVED: gcc.target/mips/save-restore-1.c: error executing dg-final: 
couldn't open "save-restore-1.s": no such file or director

Results for 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) testsuite on mipsel-unknown-linux-gnu

2007-09-18 Thread Matthias Klose
LAST_UPDATED: Sun Sep 16 07:54:18 UTC 2007 (revision 128522)

Target: mipsel-linux-gnu
gcc version 4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 
20070916-1) 
Native configuration is mipsel-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*;

=== g++ Summary ===

# of expected passes16539
# of unexpected successes   1
# of expected failures  87
# of unsupported tests  131
/build/buildd/gcc-snapshot-20070916/build/gcc/testsuite/g++/../../g++  version 
4.3.0 20070916 (experimental) [trunk revision 128522] (Debian 20070916-1) 

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/builtin-bitops-1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/builtin-bitops-1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O0 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O1 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O2 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -Os 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O0 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O1 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O2 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -Os 
FAIL: gcc.c-torture/execute/mayalias-2.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/mayalias-3.c compilation,  -O3 -g  (internal 
compiler error)
UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution,  -O3 -g 
FAIL: gcc.dg/memcpy-1.c scan-tree-dump-times nasty_local 0
XPASS: gcc.dg/torture/builtin-math-4.c  -O0  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O1  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O2  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer -funroll-loops 
 (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -O3 -g  (test for excess errors)
XPASS: gcc.dg/torture/builtin-math-4.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0
XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0
FAIL: gcc.target/mips/code-readable-1.c (test for excess errors)
ERROR: gcc.target/mips/code-readable-1.c: error executing dg-final: couldn't 
open "code-readable-1.s": no such file or directory
UNRESOLVED: gcc.target/mips/code-readable-1.c: error executing dg-final: 
couldn't open "code-readable-1.s": no such file or directory
FAIL: gcc.target/mips/code-readable-2.c (test for excess errors)
ERROR: gcc.target/mips/code-readable-2.c: error executing dg-final: couldn't 
open "code-readable-2.s": no such file or directory
UNRESOLVED: gcc.target/mips/code-readable-2.c: error executing dg-final: 
couldn't open "code-readable-2.s": no such file or directory
FAIL: gcc.target/mips/code-readable-3.c (test for excess errors)
ERROR: gcc.target/mips/code-readable-3.c: error executing dg-final: couldn't 
open "code-readable-3.s": no such file or directory
UNRESOLVED: gcc.target/mips/code-readable-3.c: error executing dg-final: 
couldn't open "code-readable-3.s": no such file or directory
FAIL: gcc.target/mips/mips16-attributes-2.c (test for excess errors)
FAIL: gcc.target/mips/mips16e-extends.c (test for excess errors)
ERROR: gcc.target/mips/mips16e-extends.c: error executing dg-final: couldn't 
open "mips16e-extends.s": no such file or directory
UNRESOLVED: gcc.target/mips/mips16e-extends.c: error executing dg-final: 
couldn't open "mips16e-extends.s": no such file or directory
FAIL: gcc.target/mips/save-restore-1.c (test for excess errors)
ERROR: gcc.target/mips/save-restore-1.c: error executing dg-final: couldn't 
open "save-restore-1.s": no such file or directory
UNRESOLVED: gcc.target/mips/save-restore-1.c: error executing dg-final: 
couldn't open "save-restore-1.s": no such file or dire

Bug#204687: Serious business in a sphere of financial services. (no investment reqired)

2007-09-18 Thread etienne osborn

Big international commercial organization is seeking of talented, honest, 
reliable representatives in different regions. Because of developing of our 
business the organization is proposing to you to become its part. You can work 
part time or full time.
Requirements: 
Internet Connection 
Basic knowledge of PC 
Honesty 
Reliability

Basic knowledge of marketing is a plus.
If you want to get an opportunity to make a career, to earn some extra money, 
to gain new experience during the work, you should send us the following 
information to: [EMAIL PROTECTED]
1) Full name 
2) Contact phone numbers
3) Languages 
4) Part time job/Full time
No investments needed to start working with us. 
The preference is given to employees with knowledge of foreign languages.

Thank you and we are looking forward to cooperate in long term base with you.

P.S. This job is not associated with "money muls"


Courtesy of Steve Block Volume II, Issue 2 17 Sizing Up Nanotechnology Block, is that 
"if we are ever to build machines which are in any way based on biological 
structures, then we will have to learn about how real biological systems function."





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#201658: International trading company is proud to offer a high-paid position for a honest hard-working ambitious person.

2007-09-18 Thread franzen annalise

Big international commercial organization is seeking of talented, honest, 
reliable representatives in different regions. Because of developing of our 
business the organization is proposing to you to become its part. You can work 
part time or full time.
Requirements: 
Internet Connection 
Basic knowledge of PC 
Honesty 
Reliability

Basic knowledge of marketing is a plus.
If you want to get an opportunity to make a career, to earn some extra money, 
to gain new experience during the work, you should send us the following 
information to: [EMAIL PROTECTED]
1) Full name 
2) Contact phone numbers
3) Languages 
4) Part time job/Full time
No investments needed to start working with us. 
The preference is given to employees with knowledge of foreign languages.

Thank you and we are looking forward to cooperate in long term base with you.

P.S. This job is not associated with "money muls"


Nature's own marvelous nanoscale machines include motors that spin bacterial flagella at up to 1000 
revolutions per second and polymerases that step along DNA and RNA to facilitate the flow of 
genetic information. Block, along with other Stanford researchers such as Professors W. E. Moerner 
(Chemistry) and Steve Chu (Physics), are studying Nature's machines through single molecule 
science. This young field is devoted to following molecules one at a time rather than observing 
their averaged behavior, as has been done traditionally. To understand why average properties may 
obscure molecular behavior, "Consider a ship traveling from New York to San Francisco," 
says Block. "If it's small enough, it will travel down into the Caribbean and go across the 
Panama Canal and then back up to San Francisco. If it's a big oil tanker, it won't fit through the 
Panama Canal; it's got to go all the way around Cape Horn. But the average path of a ship traveling 
from New York to San Francisco would probably come out somewhere in the middle of the Amazon where 
there is in fact no route at all!"





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#443148: gdc-4.1_0.24-4.1.2-16exp1(alpha) FTBFS: Re: Log for failed build of gdc-4.1_0.24-4.1.2-16exp1 (dist=experimental)

2007-09-18 Thread Martin Zobel-Helas
Package: gdc-4.1
Version: 0.24-4.1.2-16exp1
Severity: serious
Justification: FTBFS, RC Policy Paragraph 4

> Automatic build of gdc-4.1_0.24-4.1.2-16exp1 on ds10 by sbuild/alpha 98-farm
> Build started at 20070918-1849
> **
> Checking available source versions...
> Fetching source files...
> Reading package lists...
> Building dependency tree...
> Need to get 2467kB of source archives.
> Get:1 http://www.gag.com experimental/main gdc-4.1 0.24-4.1.2-16exp1 (dsc) 
> [1971B]
> Get:2 http://www.gag.com experimental/main gdc-4.1 0.24-4.1.2-16exp1 (tar) 
> [1016kB]
> Get:3 http://www.gag.com experimental/main gdc-4.1 0.24-4.1.2-16exp1 (diff) 
> [1449kB]
> Fetched 2467kB in 0s (5343kB/s)
> Download complete and in download only mode
> ** Using build dependencies supplied by package:
> Build-Depends: dpkg-dev (>= 1.13.9), gcc-multilib [amd64 i386 powerpc ppc64 
> s390 sparc kfreebsd-amd64], libc6.1-dev (>= 2.5) [alpha ia64] | libc0.3-dev 
> (>= 2.5) [hurd-i386] | libc0.1-dev (>= 2.5) [kfreebsd-i386 kfreebsd-amd64 
> knetbsd-gnu] | libc12-dev (>= 2.5) [netbsd-elf-gnu] | libc6-dev (>= 2.5), 
> libc6-dev (>= 2.6.1-2) [sparc], libc6-dev-amd64 [i386], libc6-dev-sparc64 
> [sparc], libc6-dev-s390x [s390], libc6-dev-i386 [amd64], libc6-dev-powerpc 
> [ppc64], libc6-dev-ppc64 [powerpc], libc0.1-dev-i386 [kfreebsd-amd64], 
> lib32gcc1 [amd64 ppc64 kfreebsd-amd64], lib64gcc1 [i386 powerpc sparc s390], 
> lib64z1-dev [i386 powerpc sparc s390], lib32z1-dev [amd64 ppc64 
> kfreebsd-amd64], libunwind7-dev (>= 0.98.5-6) [ia64], libatomic-ops-dev 
> [ia64], m4, autoconf, autoconf2.13, automake1.9, libtool, autogen, gawk, 
> expect-tcl8.3 [!none !hurd-i386], dejagnu (>= 1.4.3) [!none !hurd-i386], 
> bzip2, binutils (>= 2.17cvs20070426) | binutils-multiarch (>= 
> 2.17cvs20070426), binutils-hppa64 (>= 2.17cvs20070426) [hppa], debhelper (>= 
> 5.0), gperf (>= 3.0.1), bison (>= 1:2.3), flex, gettext, texinfo (>= 4.3), 
> zlib1g-dev, libmpfr-dev (>= 2.3.0~rc1.dfsg.1) [!avr], locales [!hurd-i386 
> !knetbsd-i386 !netbsd-i386 !m68k], procps [!hurd-i386], sharutils, 
> gcc-4.1-source (>= 4.1.2), gcc-4.1-source (<< 4.1.3), realpath (>= 1.9.12), 
> chrpath, lsb-release, make (>= 3.81)
> Checking for already installed source dependencies...
> dpkg-dev: already installed (1.14.6 >= 1.13.9 is satisfied)
> libc6.1-dev: already installed (2.6.1-5 >= 2.5 is satisfied)

[...]

> In file included from ../../src/gcc/d/dmd/mars.h:192,
>  from ../../src/gcc/d/dmd/expression.h:20,
>  from ../../src/gcc/d/dmd/mtype.h:30,
>  from ../../src/gcc/d/d-lang.cc:24:
> ../../src/gcc/d/d-gcc-real.h: In member function 'const real_value& 
> real_t::rv() const':
> ../../src/gcc/d/d-gcc-real.h:35: warning: type-punning to incomplete type 
> might break strict-aliasing rules
> ../../src/gcc/d/d-gcc-real.h: In member function 'real_value& real_t::rv()':
> ../../src/gcc/d/d-gcc-real.h:36: warning: type-punning to incomplete type 
> might break strict-aliasing rules
> In file included from ../../src/gcc/d/d-lang.cc:26:
> ../../src/gcc/d/dmd/module.h: At global scope:
> ../../src/gcc/d/dmd/module.h:44: warning: unused parameter 'sc'
> In file included from ../../src/gcc/d/d-lang.cc:33:
> ../../src/gcc/d/d-codegen.h:459: warning: unused parameter 'i'
> ../../src/gcc/d/d-lang.cc:267: warning: unused parameter 'macro'
> ../../src/gcc/d/d-lang.cc: In function 'unsigned char d_init()':
> ../../src/gcc/d/d-lang.cc:292: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:316: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:318: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:321: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:325: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:330: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:331: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:339: warning: deprecated conversion from string 
> constant to 'char*'
> ../../src/gcc/d/d-lang.cc:368: error: 'c_dialect_cxx' was not declared in 
> this scope
> ../../src/gcc/d/d-lang.cc:368: error: 'c_dialect_objc' was not declared in 
> this scope
> ../../src/gcc/d/d-lang.cc:369: error: '

Processed: your mail

2007-09-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 443148 wishlist
Bug#443148: gdc-4.1_0.24-4.1.2-16exp1(alpha) FTBFS: Re: Log for failed build of 
gdc-4.1_0.24-4.1.2-16exp1 (dist=experimental)
Severity set to `wishlist' from `serious'

> merge 439573 443148
Bug#439573: gdc ports needed
Bug#443148: gdc-4.1_0.24-4.1.2-16exp1(alpha) FTBFS: Re: Log for failed build of 
gdc-4.1_0.24-4.1.2-16exp1 (dist=experimental)
Bug#440715: gdc-4.1_0.24-4.1.2-16exp1(hppa/experimental): FTBFS: Error: 
identifier 'isnan' of 'gcc.config.isnan' is not defined
Merged 439573 440715 443148.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#443148:

2007-09-18 Thread Arthur Loiret
severity 443148 wishlist
merge 439573 443148
thanks

Hello,

gdc is only ported upstream on i386, amd64, powerpc, and on
kfreebsd-gnu (will be on next upload), setting severity to wishlist
since a port is needed then.

main gdc ports bug is: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439573


Arthur.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[Bug rtl-optimization/33410] [4.2/4.3 regression] ICE in iv_analyze_expr, at loop-iv.c:934

2007-09-18 Thread tbm at cyrius dot com


-- 

tbm at cyrius dot com changed:

   What|Removed |Added

 CC||rth at gcc dot gnu dot org


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

--- You are receiving this mail because: ---
You reported the bug, or are watching the reporter.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]