summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorMax Bernstein <ruby@bernsteinbear.com>2025-11-24 22:44:15 -0500
committerMax Bernstein <tekknolagi@gmail.com>2025-12-01 15:19:26 -0800
commita25196395e7502e4d6faad0856c697690d8a202e (patch)
treef74ced60407f1e9517656bd902093152cceffe42 /internal
parent8aed31103874524395912fb7ffaee88b5e59a9c3 (diff)
Add BOP_GTGT
This will help JITs (and maybe later the interpreter) optimize Integer#>>.
Diffstat (limited to 'internal')
-rw-r--r--internal/basic_operators.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/basic_operators.h b/internal/basic_operators.h
index 5dc8d7fe8d..493d2fa7f7 100644
--- a/internal/basic_operators.h
+++ b/internal/basic_operators.h
@@ -24,6 +24,7 @@ enum ruby_basic_operators {
BOP_SUCC,
BOP_GT,
BOP_GE,
+ BOP_GTGT,
BOP_NOT,
BOP_NEQ,
BOP_MATCH,