-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds basic support for representing and pretty-printing opaque `ptr` types, which were introduced in LLVM 13 as part of a longer-term plan to stop using non-opaque pointer types (e.g., `i8*`). See https://llvm.org/docs/OpaquePointers.html for further details. The next step in `llvm-pretty` is to make sure that all of the instructions that involve pointers in some way (e.g., `call`) have all the information that they need to work with opaque pointers. I will be addressing this in subsequent commits. This is one step towards #102.
- Loading branch information
1 parent
6750fc2
commit bada126
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters