diff --git a/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp b/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp index c188ad86418..9e73f26377d 100644 --- a/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp +++ b/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp @@ -1467,9 +1467,9 @@ void BytecodeInterpreter::interpret(Configuration& configuration, InstructionPoi case Instructions::f32x4_ge.value(): return binary_numeric_operation>(configuration); case Instructions::f32x4_min.value(): - return binary_numeric_operation>(configuration); + return binary_numeric_operation>(configuration); case Instructions::f32x4_max.value(): - return binary_numeric_operation>(configuration); + return binary_numeric_operation>(configuration); case Instructions::f64x2_eq.value(): return binary_numeric_operation>(configuration); case Instructions::f64x2_ne.value(): @@ -1483,9 +1483,9 @@ void BytecodeInterpreter::interpret(Configuration& configuration, InstructionPoi case Instructions::f64x2_ge.value(): return binary_numeric_operation>(configuration); case Instructions::f64x2_min.value(): - return binary_numeric_operation>(configuration); + return binary_numeric_operation>(configuration); case Instructions::f64x2_max.value(): - return binary_numeric_operation>(configuration); + return binary_numeric_operation>(configuration); case Instructions::f32x4_div.value(): return binary_numeric_operation>(configuration); case Instructions::f32x4_mul.value():