mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 23:22:25 +00:00
Update bootstrap C sources.
This commit is contained in:
parent
30bae1a622
commit
d4c5d63978
5 changed files with 5 additions and 5 deletions
|
|
@ -354,7 +354,7 @@ void Out_DumpHeap (void)
|
|||
Out_Hex(c->reserved, 1);
|
||||
Out_Ln();
|
||||
baddr = (ADDRESS)&c->firstblock;
|
||||
while (baddr < c->end) {
|
||||
while (c->end - baddr > 0) {
|
||||
Out_String((CHAR*)" Block at: ", 15);
|
||||
Out_Hex(baddr, 1);
|
||||
Out_Ln();
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ void Out_DumpHeap (void)
|
|||
Out_Hex(c->reserved, 1);
|
||||
Out_Ln();
|
||||
baddr = (ADDRESS)&c->firstblock;
|
||||
while (baddr < c->end) {
|
||||
while (c->end - baddr > 0) {
|
||||
Out_String((CHAR*)" Block at: ", 15);
|
||||
Out_Hex(baddr, 1);
|
||||
Out_Ln();
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ void Out_DumpHeap (void)
|
|||
Out_Hex(c->reserved, 1);
|
||||
Out_Ln();
|
||||
baddr = (ADDRESS)&c->firstblock;
|
||||
while (baddr < c->end) {
|
||||
while (c->end - baddr > 0) {
|
||||
Out_String((CHAR*)" Block at: ", 15);
|
||||
Out_Hex(baddr, 1);
|
||||
Out_Ln();
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ void Out_DumpHeap (void)
|
|||
Out_Hex(c->reserved, 1);
|
||||
Out_Ln();
|
||||
baddr = (ADDRESS)&c->firstblock;
|
||||
while (baddr < c->end) {
|
||||
while (c->end - baddr > 0) {
|
||||
Out_String((CHAR*)" Block at: ", 15);
|
||||
Out_Hex(baddr, 1);
|
||||
Out_Ln();
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ void Out_DumpHeap (void)
|
|||
Out_Hex(c->reserved, 1);
|
||||
Out_Ln();
|
||||
baddr = (ADDRESS)&c->firstblock;
|
||||
while (baddr < c->end) {
|
||||
while (c->end - baddr > 0) {
|
||||
Out_String((CHAR*)" Block at: ", 15);
|
||||
Out_Hex(baddr, 1);
|
||||
Out_Ln();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue