- allow MegaClauses with blobs

- change Diffs to be thread specific
- include Christian's updates


git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1222 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2005-01-04 02:50:23 +00:00
parent 9303ee3b86
commit af931c6e6d
13 changed files with 1138 additions and 1005 deletions

View File

@@ -11,8 +11,11 @@
* File: computils.c *
* comments: some useful routines for YAP's compiler *
* *
* Last rev: $Date: 2004-11-19 17:14:13 $ *
* Last rev: $Date: 2005-01-04 02:50:21 $ *
* $Log: not supported by cvs2svn $
* Revision 1.25 2004/11/19 17:14:13 vsc
* a few fixes for 64 bit compiling.
*
* Revision 1.24 2004/04/16 19:27:31 vsc
* more bug fixes
*
@@ -672,7 +675,7 @@ static char *opformat[] =
void
Yap_ShowCode (struct intermediates *cint)
{
CELL *OldH = H;
CELL *oldH = H;
struct PSEUDO *cpc;
cpc = cint->CodeStart;
@@ -686,7 +689,7 @@ Yap_ShowCode (struct intermediates *cint)
cpc = cpc->nextInst;
}
Yap_DebugPutc (Yap_c_error_stream,'\n');
H = OldH;
H = oldH;
}
#endif /* DEBUG */