This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] mips_extract_struct_return_value: use saved regcache


Andrew Cagney wrote:
> 
> > ! mips_extract_struct_value_address (struct regcache *regcache)
> >   {
> >     /* FIXME: This will only work at random.  The caller passes the
> >        struct_return address in V0, but it is not preserved.  It may
> >        still be there, or this may be a random value.  */
> > !   CORE_ADDR val;
> > !   regcache_cooked_read_unsigned (regcache, V0_REGNUM, &val);
> > !   return val;
> >   }
> 
> FYI,
> 
> This should be regcache_cooked_read_signed() so that the address is sign
> extended. 

Are you sure?  Arm, i386, and cris all use unsigned. 
I just copied them.


> I think val should also be a LONGEST.

OK, will change.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]