Sample code:
int f_i32() {
__asm {
mov eax, 1
mov edx, 1
}
}
AST for this code:
I get only MSASMStmt in AST and nothing from inside it.
I want to extract locations of ASM statements inside __asm block. How can get those with clang frontend and lib-tooling library?