stage2: sparc64: Fix CompareOperator <-> ICondition mapping

This commit is contained in:
Koakuma 2022-05-26 19:48:50 +07:00
parent 135b91aecd
commit 38aa431e03

View File

@ -644,7 +644,7 @@ pub const Instruction = union(enum) {
.gt => .gu,
.neq => .ne,
.lt => .cs,
.lte => .le,
.lte => .leu,
.eq => .eq,
};
}