Skip to content

Commit e410653

Browse files
fix operator_gt
1 parent a369c4b commit e410653

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ jobs:
8484
uses: actions-rs/cargo@v1
8585
with:
8686
command: test
87-
args: -- --skip cast::float::js_functions_match_declared_types --skip cast::int::js_functions_match_declared_types --skip cast::string::js_functions_match_declared_types --skip join::tests::js_functions_match_declared_types --skip lt::tests::js_functions_match_declared_types --skip dayssince2000::tests::js_functions_match_declared_types --skip looks::say::tests::js_functions_match_declared_types
87+
args: -- --skip cast::float::js_functions_match_declared_types --skip cast::int::js_functions_match_declared_types --skip cast::string::js_functions_match_declared_types --skip join::tests::js_functions_match_declared_types --skip lt::tests::js_functions_match_declared_types --skip gt::tests::js_functions_match_declared_types --skip dayssince2000::tests::js_functions_match_declared_types --skip looks::say::tests::js_functions_match_declared_types
8888

src/instructions/operator/gt.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ pub fn wasm(func: &StepFunc, inputs: Rc<[IrType]>) -> HQResult<Vec<Instruction<'
8181
LocalTee(local1),
8282
@isnan(t1),
8383
If(block_type),
84+
LocalGet(local2),
8485
@isnan(t2),
8586
If(block_type),
8687
I32Const(0), // NaN is not greater than NaN

0 commit comments

Comments
 (0)