Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用LLVM 的 C 接口时,如何确定两个LLVMTypeRefs 是否代表相同的类型?
LLVMTypeRef
IIUC,如果这两种类型是在同一个中创建的,那么LLVMContext它应该是同一个指针,因为类型在 LLVM 中是唯一的。C API 函数用于wrap将 C++“转换”Type为LLVMTypeRef,它只reinterpret_cast在指针上使用。
LLVMContext
wrap
Type
reinterpret_cast