TARGET_VALID_POINTER_MODE unused?

2010-10-29 Thread Paul Koning
I see documentation for TARGET_VALID_POINTER_MODE, and I see ports that define it... but I don't see any code that uses it. Did I miss it? paul

Re: TARGET_VALID_POINTER_MODE unused?

2010-10-29 Thread Andrew Pinski
On Fri, Oct 29, 2010 at 2:28 PM, Paul Koning wrote: > I see documentation for TARGET_VALID_POINTER_MODE, and I see ports that > define it... but I don't see any code that uses it. Ok, there are two issues it seems. First it is used in target.def: /* True if MODE is valid for a pointer in __attr

Re: TARGET_VALID_POINTER_MODE unused?

2010-10-30 Thread Paul Koning
On Oct 29, 2010, at 5:48 PM, Andrew Pinski wrote: > On Fri, Oct 29, 2010 at 2:28 PM, Paul Koning wrote: >> I see documentation for TARGET_VALID_POINTER_MODE, and I see ports that >> define it... but I don't see any code that uses it. > > Ok, there are two issues it seems. First it is used in

Re: TARGET_VALID_POINTER_MODE unused?

2010-10-31 Thread Ian Lance Taylor
Paul Koning writes: > What triggered the question is that I'm trying to debug a testsuite > ICE in fortran, pdp11 target, where it aborts in > convert_memory_address_addr_space apparently trying to make a 32 bit > pointer. But only 16 bit pointers are valid, ptr_mode is HImode as > expected and

Re: help debugging ICE in fortran testsuite (was: TARGET_VALID_POINTER_MODE unused?)

2010-11-01 Thread Paul Koning
On Oct 31, 2010, at 2:39 PM, Ian Lance Taylor wrote: > Paul Koning writes: > >> What triggered the question is that I'm trying to debug a testsuite >> ICE in fortran, pdp11 target, where it aborts in >> convert_memory_address_addr_space apparently trying to make a 32 bit >> pointer. But only 1