mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 00:32:24 +00:00
Update bootstrap C sources.
This commit is contained in:
parent
c57a91210b
commit
6c0c666f91
185 changed files with 324 additions and 294 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* voc 2.00 [2016/12/01]. Bootstrapping compiler for address size 8, alignment 8. tsSF */
|
||||
/* voc 2.00 [2016/12/02]. Bootstrapping compiler for address size 8, alignment 8. tsSF */
|
||||
|
||||
#define SHORTINT INT8
|
||||
#define INTEGER INT16
|
||||
|
|
@ -721,10 +721,10 @@ void Heap_InitHeap (void)
|
|||
Heap_heapsize = 0;
|
||||
Heap_allocated = 0;
|
||||
Heap_lockdepth = 0;
|
||||
Heap_heapPosMin = 9223372036854775807;
|
||||
Heap_heapPosMin = 9223372036854775807LL;
|
||||
Heap_heapPosMax = 0;
|
||||
Heap_heapNegMin = 0;
|
||||
Heap_heapNegMax = (-9223372036854775807-1);
|
||||
Heap_heapNegMax = (-9223372036854775807LL-1);
|
||||
Heap_heap = Heap_NewChunk(256000);
|
||||
__PUT(Heap_heap, 0, INT64);
|
||||
Heap_firstTry = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue