or_last is different under yapor.

This commit is contained in:
Vítor Manuel de Morais Santos Costa 2010-01-15 16:15:36 +00:00
parent af32dc1a9c
commit 89e38cbcc0

View File

@ -5498,8 +5498,13 @@ p_choicepoint_info(void)
ncl = ipc; ncl = ipc;
t = Yap_MkNewApplTerm(FunctorOr, 2); t = Yap_MkNewApplTerm(FunctorOr, 2);
break; break;
case _or_last: case _or_last:
#ifdef YAPOR
pe = ipc->u.Osblp.p0;
#else
pe = ipc->u.p.p; pe = ipc->u.p.p;
#endif
ncl = ipc; ncl = ipc;
t = Yap_MkNewApplTerm(FunctorOr, 2); t = Yap_MkNewApplTerm(FunctorOr, 2);
break; break;