RE: gcc4.5.0/libiberty/pex-common.h missing pid_t on vms

2010-05-05 Thread Jay K
> Use #ifdef HAVE_UNISTD_H instead. There are many examples in > libiberty. > > Ian Thanks Ian, that worked. --- /src/orig/gcc-4.5.0/libiberty/pex-common.h    2009-04-13 03:45:58.0 -0700 +++ /src/gcc-4.5.0/libiberty/pex-common.h    2010-05-04 06:43:24.0 -0700 @@ -31,6 +31,9 @@

RE: gcc 4.5.0 libiberty .o vs. .obj confusion

2010-05-05 Thread Jay K
> CC: gcc@ > From: iant@ > > Jay: >> I'm guessing that every ".o" in libiberty/Makefile.in should be changed to >> $(OBJEXT). > > Yes. > > Ian Thanks. Specifically ".o" goes to "@objext@". There's no way I'm going to be able to get "the papers" in. I can try to squeak by via triviality of

RE: gcc 4.5.0 libiberty .o vs. .obj confusion

2010-05-05 Thread Jay K
oops, also need like: --- /src/orig/gcc-4.5.0/libiberty/configure    2010-01-04 15:46:56.0 -0800 +++ /src/gcc-4.5.0/libiberty/configure    2010-05-05 05:40:52.0 -0700 @@ -6533,10 +6533,10 @@    # Figure out which version of pexecute to use.  case "${host}" in - *-*-mingw* | *

more .o vs. .obj targeting VMS

2010-05-05 Thread Jay K
Here's the next one: alpha-dec-vms-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o alpha-dec-vms-ar: decNumber.o: No such file or directory make[2]: *** [libdecnumber.a] Error 1 make[1]: *** [all-libdecnumber] Error 2 make: *** [all] Error 2 jbook2:vms jay$

Adding function calls before and after a CALL_EXPR

2010-05-05 Thread Saleel Kudchadker
Hi I am trying to add two function calls before and after a CALL_EXPR To do this I use bsi_insert_before and bsi_insert_after But I am having an issue having both of these working in the same pass. I can make bsi_insert_before or bsi_insert_after work independently. To make them work together I

Building GCC & CFLAGS settings

2010-05-05 Thread Steve Ellcey
I was wondering if anyone has built GCC using a CFLAGS (and CXXFLAGS) setting that causes GCC to generate code that is not compatibile with the default GCC output. Basically, I am building GCC on ia64-hp-hpux11.31 where I set CFLAGS and CXXFLAGS to "-mlp64" to generate 64 bit code instead of the

Re: more .o vs. .obj targeting VMS

2010-05-05 Thread Ralf Wildenhues
Hello Jay, * Jay K wrote on Wed, May 05, 2010 at 06:11:29PM CEST: > Here's the next one: > > alpha-dec-vms-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o > decimal64.o decimal128.o > alpha-dec-vms-ar: decNumber.o: No such file or directory > make[2]: *** [libdecnumber.a] Error 1 > m

Re: Building GCC & CFLAGS settings

2010-05-05 Thread H.J. Lu
On Wed, May 5, 2010 at 10:18 AM, Steve Ellcey wrote: > > I was wondering if anyone has built GCC using a CFLAGS (and CXXFLAGS) setting > that causes GCC to generate code that is not compatibile with the default > GCC output.  Basically, I am building GCC on ia64-hp-hpux11.31 where I set > CFLAGS a

Re: Building GCC & CFLAGS settings

2010-05-05 Thread Basile Starynkevitch
On 05/05/2010 07:42 PM, H.J. Lu wrote: On Wed, May 5, 2010 at 10:18 AM, Steve Ellcey wrote: I was wondering if anyone has built GCC using a CFLAGS (and CXXFLAGS) setting that causes GCC to generate code that is not compatibile with the default GCC output. I am using # CC="gcc -m32" CXX="g++

Re: Building GCC & CFLAGS settings

2010-05-05 Thread H.J. Lu
On Wed, May 5, 2010 at 12:41 PM, Basile Starynkevitch wrote: > On 05/05/2010 07:42 PM, H.J. Lu wrote: >> >> On Wed, May 5, 2010 at 10:18 AM, Steve Ellcey  wrote: >>> >>> I was wondering if anyone has built GCC using a CFLAGS (and CXXFLAGS) >>> setting >>> that causes GCC to generate code that is n

Re: Building GCC & CFLAGS settings

2010-05-05 Thread Dave Korn
On 05/05/2010 18:18, Steve Ellcey wrote: > During the build libiberty is built in 64 bit mode But *which* libiberty? Host, build, or target? > if I use --disable-bootstrap and build all-gcc then I don't have this problem. This could be an interaction with the cross-compile mechanism, may

where are caller-save addresses legitimized?

2010-05-05 Thread Greg McGary
reload() > setup_save_areas() > assign_stack_local_1() creates a mem address whose offset too large to fit into the machine insn's offset operand. Later, reload() > save_call_clobbered_regs() > insert_save() > adjust_address_1() > change_address_1() asserts because the address is not legitimat

Re: Building GCC & CFLAGS settings

2010-05-05 Thread Steve Ellcey
On Thu, 2010-05-06 at 00:36 +0100, Dave Korn wrote: > On 05/05/2010 18:18, Steve Ellcey wrote: > > > During the build libiberty is built in 64 bit mode > > But *which* libiberty? Host, build, or target? That is a good question. I am building in obj and I have: obj/libiberty/libiberty.a

Re: where are caller-save addresses legitimized?

2010-05-05 Thread Jeff Law
On 05/05/10 17:45, Greg McGary wrote: reload() > setup_save_areas() > assign_stack_local_1() creates a mem address whose offset too large to fit into the machine insn's offset operand. Later, reload() > save_call_clobbered_regs() > insert_save() > adjust_address_1() > change_address_1() assert

Re: where are caller-save addresses legitimized?

2010-05-05 Thread Greg McGary
On 05/05/10 20:21, Jeff Law wrote: On 05/05/10 17:45, Greg McGary wrote: reload()> setup_save_areas()> assign_stack_local_1() creates a mem address whose offset too large to fit into the machine insn's offset operand. Later, reload()> save_call_clobbered_regs()> insert_save() adj

Re: where are caller-save addresses legitimized?

2010-05-05 Thread Jeff Law
On 05/05/10 21:34, Greg McGary wrote: On 05/05/10 20:21, Jeff Law wrote: I'm not sure they are ever legitimized -- IIRC caller-save tries to only generate addressing modes which are safe for precisely this reason. Apparently not so: caller save is quite capable of producing invalid offsets.