jue*sts6sjuest

2006-11-03 Thread jue chunkeng
密?要保存好。 1cb http://koso.co.kr u2h 密?:ok wqr http://koso.co.kr/dhcp gdk 密?:ok oh2

Build report for gcc 4.1.1 on hppa2.0w

2006-11-03 Thread vartan.narinian
Output from gcc -v Using built-in specs. Target: hppa2.0w-hp-hpux11.00 Configured with: ../gcc-4.1.1/configure --prefix=/opt/local --with-local-prefix=/opt/local --with-gnu-as=/opt/local/bin/as --with-gmp=/opt/local Thread model: single gcc version 4.1.1 Languages built: c,c++,fortran,java,objc

Volatile / TREE_THIS_VOLATILE question

2006-11-03 Thread Tobias Burnus
Hi, if I dump the tree of the following C program, int main() { volatile int i; i = 5; return 0; } I get (-tree-original): { volatile int i; volatile int i; i = 5; return 0; } However, if I apply my volatile-in-Fortran patch [1] and compile integer, volatile :: i; i = 5; end then t

Re: Abt RTL expression - Optimization

2006-11-03 Thread Ian Lance Taylor
"Rohit Arul Raj" <[EMAIL PROTECTED]> writes: > The relevant part of RTL dump of fgcse pass is given below: > > (insn 13 12 50 0 (set (reg:CC 21 cc) > (compare:CC (reg:SI 29 [ n ]) > (const_int 30 [0x1e]))) 68 {*cmpsi_internal} (nil) > (nil)) > > (insn 50 13 53 0 (paralle

Re: Volatile / TREE_THIS_VOLATILE question

2006-11-03 Thread Ian Lance Taylor
Tobias Burnus <[EMAIL PROTECTED]> writes: > I use in my patch: > + if (sym->attr.volatile_) > + TREE_THIS_VOLATILE (decl) = 1; I think you will also want to give DECL a type which is volatile-qualified: build_qualified_type (original_type, TYPE_QUAL_VOLATILE) Ian

Re: Mapping NAN to ZERO / When does gcc generate MOVcc and FCMOVcc instructions?

2006-11-03 Thread Michael Eager
Michael James wrote: Hello, I am trying to get gcc to optimize an inner math loop. The first part of the loop computes a single precision float expression (which may or may not be NAN), and the second part sums all of these results into a double precision total: Conceptually, the code is: doub

Re: regenerating configure in gcc

2006-11-03 Thread Mike Stump
On Nov 1, 2006, at 7:56 AM, Jack Howarth wrote: autoreconf -I ../config In general, you will want to check the Makefile and see what it uses to run aclocal. In java for example, they use: ACLOCAL_AMFLAGS = -I . -I .. -I ../config So, in fact, I think you regenerated the file incorrectly.

Re: Splay Tree

2006-11-03 Thread Ian Blanes
The original author of this patch said he sent his copyright assignment. I only did minor modification to his work so I don't I think I should send it too. http://gcc.gnu.org/ml/gcc-patches/2005-10/msg00833.html I already did a bootstrap and check to be sure it worked right when I first sent

Re: Mapping NAN to ZERO / When does gcc generate MOVcc and FCMOVcc instructions?

2006-11-03 Thread Michael James
me but not all of my concerns. Please see below. double test(int n, double a) { double sum = 0.0; int i; for(i=0; i I was unable to replicate your results with gcc 4.0.3, so I installed gcc 4.2.0 20061103 (prerelease) from SVN. Using that, I am able to replicate the loop above exactly wi

Why doesn't libgcc define _chkstk on MinGW?

2006-11-03 Thread Mark Mitchell
This may be a FAQ, but I was unable to find the answer on the web, so I hope people will forgive me asking it here. I recently tried to use a MinGW GCC (built from FSF sources) to link with a .lib file that had been compiled with MSVC, and got link-time errors about _chkstk. After some search

Re: Mapping NAN to ZERO / When does gcc generate MOVcc and FCMOVcc instructions?

2006-11-03 Thread Uros Bizjak
(4, 6, 0) = 2.995732 test(0, 2, 0) = -inf test(-2, 3, 0) = -inf [EMAIL PROTECTED]:~/project/cf/util$ /home/james/local/gcc/bin/gcc -v Using built-in specs. Target: i686-pc-linux-gnu Configured with: ../gcc-4-2/configure --prefix=/home/james/local/gcc Thread model: posix gcc version 4.2.0 2006110

gcc-4.1-20061103 is now available

2006-11-03 Thread gccadmin
Snapshot gcc-4.1-20061103 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.1-20061103/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.1 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches

Re: Why doesn't libgcc define _chkstk on MinGW?

2006-11-03 Thread Ross Ridge
Mark Mitchell wrote: >So, my (perhaps naive) question is: why don't we define _chkstk as an >alias for _alloca in MinGW, so that we can link with these MSVC libraries? It defines __chkstk as an alias for _alloca instead. My guess is that this is a mistake. There are other MSC library functions t

Re: Why doesn't libgcc define _chkstk on MinGW?

2006-11-03 Thread Mark Mitchell
Ross Ridge wrote: There are other MSC library functions that MinGW doesn't provide, so other libraries may not link even with a _chkstk alias. Got a list? Thanks, -- Mark Mitchell CodeSourcery [EMAIL PROTECTED] (650) 331-3385 x713

RE: Why doesn't libgcc define _chkstk on MinGW?

2006-11-03 Thread Danny Smith
[Resend] From: Mark Mitchell Sent: Saturday, 4 November 2006 9:28 a.m. > > I recently tried to use a MinGW GCC (built from FSF sources) to link > with a .lib file that had been compiled with MSVC, and got link-time > errors about _chkstk. After some searching, I understand what this > function