g++ 3 name mangling
Carlo Wood
carlo@alinoe.com
Mon Mar 4 09:00:00 GMT 2002
On Mon, Mar 04, 2002 at 10:46:39AM +0100, jeroen dobbelaere wrote:
> is there an easy (and generic) way in gcc to provide an __asm__ statement
> with the mangled name of a c++ method ?
Why don't you use a C function?
Ie:
void Foo::f(int i) { ... }
extern "C" void stub_Foo_f(Foo* th, int i);
inline void stub_Foo_f(Foo* th, int i) { th->f(i); }
and then use stub_Foo_f in the __asm__.
--
Carlo Wood <carlo@alinoe.com>
More information about the Gcc
mailing list