genarg is at arg module, not at globals module!

This commit is contained in:
Vitor Santos Costa 2008-08-24 14:18:32 +01:00
parent 33af161136
commit e1544a0358
1 changed files with 1 additions and 1 deletions

View File

@ -925,7 +925,7 @@ Yap_InitInlines(void)
Yap_InitAsmPred("$or", 3, _or, p_erroneous_call, SafePredFlag);
Yap_InitAsmPred("$sll", 3, _sll, p_erroneous_call, SafePredFlag);
Yap_InitAsmPred("$slr", 3, _slr, p_erroneous_call, SafePredFlag);
CurrentModule = GLOBALS_MODULE;
CurrentModule = ARG_MODULE;
Yap_InitCPredBack("genarg", 3, 3, init_genarg, cont_genarg,SafePredFlag);
CurrentModule = cm;
}