-
Notifications
You must be signed in to change notification settings - Fork 14.7k
[IR] Introduce the ptrtoaddr
instruction
#139357
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
Changes from 21 commits
73bc383
a4c4127
25dc175
1b46988
71f9b4d
fc58910
9772b51
2f14b17
61c5c2a
da85813
f5c65e8
e3aa0cd
769e4dd
8c5f5a0
638cb3a
9afeea3
f7b19f2
26a69f2
395a0d1
ed963cc
e2471cd
7e6adba
9d4e81e
045a2b6
a4b3c8a
14d69c3
555b851
01a041b
e6bd4ae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,7 @@ typedef enum { | |
LLVMFPTrunc = 37, | ||
LLVMFPExt = 38, | ||
LLVMPtrToInt = 39, | ||
LLVMPtrToAddr = 69, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be less confusing to keep these sorted by enum values but I see that's been broken for the last few new instructions (or maybe just freeze?) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fneg and callbr also break the ordering - I think the intention in this file is to have them match the grouping in Instruction |
||
LLVMIntToPtr = 40, | ||
LLVMBitCast = 41, | ||
LLVMAddrSpaceCast = 60, | ||
|
Uh oh!
There was an error while loading. Please reload this page.