-
Notifications
You must be signed in to change notification settings - Fork 78
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
dialects: (LLVM) Add bitcast op #3776
Conversation
53ad570
to
2d56b52
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3776 +/- ##
==========================================
- Coverage 91.25% 91.25% -0.01%
==========================================
Files 461 461
Lines 57479 57490 +11
Branches 5543 5543
==========================================
+ Hits 52455 52465 +10
- Misses 3602 3603 +1
Partials 1422 1422 ☔ View full report in Codecov by Sentry. |
For an upcoming project |
xdsl/dialects/llvm.py
Outdated
class BitcastOp(IRDLOperation): | ||
name = "llvm.bitcast" | ||
|
||
arg = operand_def(Attribute) # LLVM-compatible non-aggregate type |
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.
docstring?
xdsl/dialects/llvm.py
Outdated
|
||
arg = operand_def(Attribute) # LLVM-compatible non-aggregate type | ||
|
||
result = result_def(Attribute) # LLVM-compatible non-aggregate type |
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.
docstring?
2d56b52
to
986dfdf
Compare
Add the
llvm.bitcast
op