| author | |
| committer | |
| log | bfe92f7d8cc9ceb76f194f8092cced081d8e5c84 |
| tree | b8f3b61a6c7366210accacfb746ed9970a91eb3f |
| parent | a8dde7f0ae0776bc3ba5ad45fd0dd6578171425a |
1 files changed, 2 insertions(+), 2 deletions(-)
src/arch/sparcv9/bits.zig+2-2| ... | ... | @@ -583,7 +583,7 @@ pub const Instruction = union(enum) { |
| 583 | 583 | .rs1 = rs1.enc(), |
| 584 | 584 | .cc1 = ccr_cc1, |
| 585 | 585 | .cc0 = ccr_cc0, |
| 586 | .simm11 = @bitCast(i11, imm), | |
| 586 | .simm11 = @bitCast(u11, imm), | |
| 587 | 587 | }, |
| 588 | 588 | }; |
| 589 | 589 | } |
| ... | ... | @@ -617,7 +617,7 @@ pub const Instruction = union(enum) { |
| 617 | 617 | .cond = cond, |
| 618 | 618 | .cc1 = ccr_cc1, |
| 619 | 619 | .cc0 = ccr_cc0, |
| 620 | .simm11 = @bitCast(i11, imm), | |
| 620 | .simm11 = @bitCast(u11, imm), | |
| 621 | 621 | }, |
| 622 | 622 | }; |
| 623 | 623 | } |