-
Notifications
You must be signed in to change notification settings - Fork 329
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
Move llvmlite to llvm19 #1092
base: main
Are you sure you want to change the base?
Move llvmlite to llvm19 #1092
Conversation
Add todo for future passes, simplify pass registeration in newpassmanager.py add dot printer passes Add hooks for most of the passes currently supported by legacy pm edit
Drop support for typed pointers Drop support for Legacy pass managers Update some APIs
- Delete transforms.{py|cpp} - Drop support for llvm version < 17 - Refactoring
- Fix some deprecated APIs - Disable some refprune tests, either the tests or the pass itself needs updating for llvm18
- Update few APIs
Add todo for future passes, simplify pass registeration in newpassmanager.py Add dot printer passes Add hooks for most of the passes currently supported by legacy pm Fix working of new APIs with llvm16
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
auto context = LLVMGetGlobalContext(); | ||
LLVMContextSetOpaquePointers(context, enableOpaquePointers); | ||
// Opaque pointer support dropped https://reviews.llvm.org/D139441 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you meant "Typed pointer support dropped"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, thanks for spotting! Will update :)
LLVMContextRef context = LLVMContextCreate(); | ||
LLVMContextSetOpaquePointers(context, enableOpaquePointers); | ||
// Opaque pointer support dropped https://reviews.llvm.org/D139441 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Same as above.)
Depends and contains changes introduced with #1091
List of changes in this MR
TODO: