I’m trying to write code that queries the Clang AST (from a LLVM Pass).
I want to fetch type info that is lost during lowering (pointee types of pointers).
Is it possible to get a handle to the Clang AST of the current LLVM module (or function) from a LLVM Pass?
LLVMContext
doesn’t seem to have a handle to Clang’s ASTContext