Skip to content

Commit ef0fe09

Browse files
committed
fix: Lt -> Lte ULt -> ULte
Signed-off-by: Weixie Cui <cuiweixie@gmail.com>
1 parent 5a48c04 commit ef0fe09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lir/converter/expression.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,9 @@ impl Converter<'_> {
201201
..
202202
} => {
203203
let operator = if *signed {
204-
BinaryOperator::Lt
204+
BinaryOperator::Lte
205205
} else {
206-
BinaryOperator::ULt
206+
BinaryOperator::ULte
207207
};
208208
self.binary_operation(
209209
dest,

0 commit comments

Comments
 (0)