Fix RISC-V backend tests and update the flake#40
Merged
mengzhuo merged 1 commit intoplctlab:mainfrom Oct 15, 2025
DzmingLi:main
Merged
Fix RISC-V backend tests and update the flake#40mengzhuo merged 1 commit intoplctlab:mainfrom DzmingLi:main
mengzhuo merged 1 commit intoplctlab:mainfrom
DzmingLi:main
Conversation
1. **Add short-circuit logical operators (Cexpr_and/Cexpr_or)** - Implement proper short-circuit evaluation using conditional branches - AND: if lhs then rhs else false - OR: if lhs then true else rhs 2. **Add T_bytes support in fixedarray operations** - Handle Bytes as FixedArray[Byte] in Pfixedarray_get_item - Fixes "bad type in fixedarray_get_item" error 3. **Add EverySingleElem support for FixedArray literals** - Implement Pfixedarray_make with EverySingleElem kind - Enables array literals like [1, 2, 3, 4, 5] - Allocates buffer with length prefix and stores all elements 4. **Fix list01/list02 recursive method calls** - Update deprecated syntax: length(tail) → tail.length() - Update deprecated syntax: get(tail, i-1) → tail.get(i-1) - Fixes "value identifier unbound" errors 5. **Update flake to automatically bundle the required core** 6. **Update README ** - Add RISC-V testing guide. - Modify nix develop guide.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add short-circuit logical operators (Cexpr_and/Cexpr_or)
Add T_bytes support in fixedarray operations
Add EverySingleElem support for FixedArray literals
Fix list01/list02 recursive method calls
Update flake to automatically bundle the required core
**Update README **