This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: register variable is clobbered by passing parameter to a function
- From: Ian Lance Taylor <ian at wasabisystems dot com>
- To: "Wolfgang Kuehn" <wolfgang dot kuehn at kristensen dot de>
- Cc: <gcc at gcc dot gnu dot org>
- Date: 16 Mar 2004 09:47:27 -0500
- Subject: Re: register variable is clobbered by passing parameter to a function
- References: <002d01c40b61$85d30970$406510ac@B1WS064>
"Wolfgang Kuehn" <wolfgang.kuehn@kristensen.de> writes:
> Last question: what means ABI ?
It means Application Binary Interface. In this case it refers to the
calling convention, which is a binary interface between functions.
You can only safely call between functions which are all compiled with
the same ABI.
Ian