Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(literal-size): Change literal from 1ULL to 1UL
When compiling for RV32, the expected size of the argument used is 32-bit. Using 1ULL forces the argument to be 64-bit since shift operations take the size of the largest operand. This results in the error Werror=arith-conversion when compiling for RV32 Signed-off-by: Miguel Silva <[email protected]>
- Loading branch information