-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to LLVM 15.0 #204
Comments
After I made this issue, I found @tannergooding already started work: https://github.com/dotnet/LLVMSharp/releases/tag/v15.0.0-beta1 |
|
Can opaque pointers be used in LLVM sharp v15, I can't see how to get the type from the context/addr. space? |
I am not an authority on it, but I believe the way to get an opaque pointer type is to create any pointer type as usual (while opaque pointers are enabled). |
At time of writing, the latest LLVM version is 15.0.6. The current libLLVM implementation uses opaque pointers but LLVMSharp doesn't support them. A workaround of sorts is to turn off opaque pointers:
The text was updated successfully, but these errors were encountered: