Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Load nqp_bigint ops, ensure they get set up.
  • Loading branch information
jnthn committed Nov 8, 2011
1 parent 1985138 commit d2d14a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Perl6/SymbolTable.pm
Expand Up @@ -1546,7 +1546,8 @@ class Perl6::SymbolTable is HLL::Compiler::SerializationContextBuilder {
method add_libs($comp_unit) {
$comp_unit.loadlibs('nqp_group', 'nqp_ops', 'perl6_group', 'perl6_ops',
'bit_ops', 'math_ops', 'trans_ops', 'io_ops',
'obscure_ops', 'os', 'file', 'sys_ops');
'obscure_ops', 'os', 'file', 'sys_ops',
'nqp_bigint_ops');
}

# Checks if a given symbol is declared.
Expand Down Expand Up @@ -1797,6 +1798,7 @@ class Perl6::SymbolTable is HLL::Compiler::SerializationContextBuilder {
),
PAST::Stmts.new(
PAST::Op.new( :pirop('nqp_dynop_setup v') ),
PAST::Op.new( :pirop('nqp_bigint_setup v') ),
PAST::Op.new( :pirop('rakudo_dynop_setup v') ),
PAST::Op.new(
:pasttype('callmethod'), :name('hll_map'),
Expand Down

0 comments on commit d2d14a2

Please sign in to comment.