Skip to content

Commit 8534217

Browse files
committed
add nqp::radix_I alias, fix op name
1 parent bb5f116 commit 8534217

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/PAST/NQP.pir

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,7 @@ entry to produce the node to be returned.
472472
maphash['ln_n'] = 'ln__Nn'
473473
maphash['sqrt_n'] = 'sqrt__Nn'
474474
maphash['radix'] = 'nqp_radix__Pisii'
475+
maphash['radix_I'] = 'nqp_bigint_radix__PisiiP'
475476
maphash['log_n'] = 'ln__NN'
476477
maphash['exp_n'] = 'exp__Nn'
477478

src/ops/nqp_bigint.ops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ The $5 flags is a bitmask that modifies the parse and/or result:
239239

240240
*/
241241

242-
inline op nqp_radix(out PMC, in INT, in STR, in INT, in INT, in PMC) :base_core {
242+
inline op nqp_bigint_radix(out PMC, in INT, in STR, in INT, in INT, in PMC) :base_core {
243243
PMC *out;
244244
INTVAL radix = $2;
245245
STRING *str = $3;

0 commit comments

Comments
 (0)