You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LLVM pointers don't include the type of what it's pointing to anymore - https://llvm.org/docs/OpaquePointers.html, so basically i8* becomes ptr. Examples in this repo (idk if all or just some) use the old pointer style.
The text was updated successfully, but these errors were encountered:
Good point. Most of the LLVM examples are already outdated and I hardly find the time to update it. I'll gladly accept any help. I think llvm is capable of reading old bitcode so we be able to update the samples by essentially piping through opt?
LLVM pointers don't include the type of what it's pointing to anymore - https://llvm.org/docs/OpaquePointers.html, so basically
i8*
becomesptr
. Examples in this repo (idk if all or just some) use the old pointer style.The text was updated successfully, but these errors were encountered: