This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [DRAGONEGG] Expose 4 functions in i386.c
> Hi Andrew,
>
>> Aren't at least one of these a target hook? Why can't you use the target
>> hooks?
>
> thanks for thinking about this. As far as I can see none of these are target
> hooks. Which one were you thinking of? As for why I can't use target hooks,
These functions are used to implement x86-64 ABI (as you probably know). I.e. to tell
you where argument stays. There are target hooks to pass these decisions into calls.c
via CUMULATIVE_ARGS, so search for these.
Honza