Displaying 1 result from an estimated 1 matches for "20asm".
Did you mean:
20am
2011 Jan 21
1
[LLVMdev] goto in inline asm
Is goto from inline asm supported in LLVM 2.8 ?
I am searching for something similar to what gcc 4.5 does:
http://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Extended%20asm%20with%20goto
http://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Extended%20asm%20with%20goto
which allows jumping from inline assembly to a label defined in C.
I want to jump from inline asm to a basic block in LLVM. As far as I know in
LLVM 2.7 this was not yet possible. Is it allowed a jump...