From 2c2a9fe01e9946707b87257d3d8e04cc7775c16e Mon Sep 17 00:00:00 2001 From: Mark Thom Date: Fri, 3 Feb 2023 22:27:08 -0700 Subject: [PATCH] correct shl stub_gen --- src/machine/arithmetic_ops.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/arithmetic_ops.rs b/src/machine/arithmetic_ops.rs index 2ad43e73..774b848f 100644 --- a/src/machine/arithmetic_ops.rs +++ b/src/machine/arithmetic_ops.rs @@ -671,7 +671,7 @@ pub(crate) fn shr(n1: Number, n2: Number, arena: &mut Arena) -> Result Result { let stub_gen = || { - let shl_atom = atom!(">>"); + let shl_atom = atom!("<<"); functor_stub(shl_atom, 2) }; -- 2.54.0