summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorJames Raspass <jraspass@gmail.com>2022-01-22 11:07:58 +0000
committerPaul Evans <leonerd@leonerd.org.uk>2022-01-24 00:35:51 +0000
commit17a8df707746ce70979d18c5b5f9e383c365bbff (patch)
treee5804a4a146bb23322767dca987fc9d8dbc8f493 /opnames.h
parentfc23c914f8de7cb85f58830142e0164864d4601c (diff)
downloadperl-17a8df707746ce70979d18c5b5f9e383c365bbff.tar.gz
Add ceil & floor to builtin
Diffstat (limited to 'opnames.h')
-rw-r--r--opnames.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/opnames.h b/opnames.h
index cfad87aaf7..f03ba7f6ba 100644
--- a/opnames.h
+++ b/opnames.h
@@ -426,10 +426,12 @@ typedef enum opcode {
OP_BLESSED = 409,
OP_REFADDR = 410,
OP_REFTYPE = 411,
+ OP_CEIL = 412,
+ OP_FLOOR = 413,
OP_max
} opcode;
-#define MAXO 412
+#define MAXO 414
#define OP_FREED MAXO
/* the OP_IS_* macros are optimized to a simple range check because