diff options
author | Chip Salzenberg <chip@perl.com> | 1997-04-19 02:42:33 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-30 00:00:00 +1200 |
commit | cf26c822ca0e58de393c90b3f7a75af4335d0d65 (patch) | |
tree | 88e763c03d0615caf60148b0bff81fdaffc67ff0 /opcode.pl | |
parent | 3ffbbd1f0315c067fbd05c166cf613d43783d8e1 (diff) | |
download | perl-cf26c822ca0e58de393c90b3f7a75af4335d0d65.tar.gz |
Fix C< hex('80') * 0x1000000 >
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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. |