Tjerk Hofmeijer wrote:
I've got a small assembly function that calls a C function and I want to force mspgcc to inline that C function.How can I do that ?
you cant. it can only inline in C code, not in users asm code...but you can write inline asm in gcc. so why dont you put it the other way round and write inline as in your c function?
and why do you want to inline it in the first place? a call isnt _that_ expensive...
chris