renumbered byte codes and removed fragile code handling tail-call optimization

This commit is contained in:
hyunghwan.chung
2015-06-29 13:52:40 +00:00
parent c233bb95a7
commit 51d7db9b96
6 changed files with 988 additions and 701 deletions

View File

@ -301,10 +301,7 @@ enum stix_trait_t
{
/* perform no garbage collection when the heap is full.
* you still can use stix_gc() explicitly. */
STIX_NOGC = (1 << 0),
/* no tail call optimization */
STIX_NOTCO = (1 << 1),
STIX_NOGC = (1 << 0)
};
typedef enum stix_trait_t stix_trait_t;