Inline assembler

Does LLVM support inline assembler :-

a) In GCC front end ?
b) withing .ll files ?

If so is there any documentation, and could you point me to the code that implements this ?

Many thanks in advance,

Aaron

Does LLVM support inline assembler :-
   a) In GCC front end ?

yes

   b) withing .ll files ?

yes.

If so is there any documentation, and could you point me to the code
that implements this ?

langref has a short description, but your best bet is to take some example C code that uses inline asm and compile it with "llvm-gcc -emit-llvm -S" to see what it produces.

-Chris

Thanks, I'll do that,

Aaron