Commit 38aa431e03

Koakuma <koachan@protonmail.com>
2022-05-26 14:48:50
stage2: sparc64: Fix CompareOperator <-> ICondition mapping
1 parent 135b91a
Changed files (1)
src
arch
sparc64
src/arch/sparc64/bits.zig
@@ -644,7 +644,7 @@ pub const Instruction = union(enum) {
                 .gt => .gu,
                 .neq => .ne,
                 .lt => .cs,
-                .lte => .le,
+                .lte => .leu,
                 .eq => .eq,
             };
         }