summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@perl.com>1997-04-19 02:42:33 +1200
committerChip Salzenberg <chip@atlantic.net>1997-04-30 00:00:00 +1200
commitcf26c822ca0e58de393c90b3f7a75af4335d0d65 (patch)
tree88e763c03d0615caf60148b0bff81fdaffc67ff0
parent3ffbbd1f0315c067fbd05c166cf613d43783d8e1 (diff)
downloadperl-cf26c822ca0e58de393c90b3f7a75af4335d0d65.tar.gz
Fix C< hex('80') * 0x1000000 >
-rwxr-xr-xopcode.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/opcode.pl b/opcode.pl
index 6fed2f8896..158b70e95d 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -326,9 +326,11 @@ exp exp ck_fun fstu S?
log log ck_fun fstu S?
sqrt sqrt ck_fun fstu S?
+# Lowbrow math.
+
int int ck_fun fstu S?
-hex hex ck_fun istu S?
-oct oct ck_fun istu S?
+hex hex ck_fun fstu S?
+oct oct ck_fun fstu S?
abs abs ck_fun fstu S?
# String stuff.