Skip to content

Commit

Permalink
pr: Implement shift conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
xlauko committed Feb 24, 2025
1 parent 4de5f79 commit 4d071e5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/vast/Conversion/Parser/ToParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,9 @@ namespace vast::conv {
ToMaybeParse< hl::AddIOp >, ToMaybeParse< hl::SubIOp >,
ToMaybeParse< hl::PostIncOp >, ToMaybeParse< hl::PostDecOp >,
ToMaybeParse< hl::PreIncOp >, ToMaybeParse< hl::PreDecOp >,
// Shift operations
ToMaybeParse< hl::BinShlOp >, ToMaybeParse< hl::BinLShrOp >,
ToMaybeParse< hl::BinAShrOp >,
// Non-parsing integer arithmetic
ToNoParse< hl::MulIOp >,
ToNoParse< hl::DivSOp >, ToNoParse< hl::DivUOp >,
Expand Down

0 comments on commit 4d071e5

Please sign in to comment.