mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 19:12:25 +00:00
Remove unused variable and export. Thanks Oleg.
This commit is contained in:
parent
d9c319ef3a
commit
6d957bf0bb
2 changed files with 9 additions and 10 deletions
|
|
@ -497,7 +497,7 @@ MODULE Heap;
|
||||||
VAR
|
VAR
|
||||||
frame: SYSTEM.PTR;
|
frame: SYSTEM.PTR;
|
||||||
inc, nofcand: LONGINT;
|
inc, nofcand: LONGINT;
|
||||||
sp, p, stack0, ptr: LONGINT;
|
sp, p, stack0: LONGINT;
|
||||||
align: RECORD ch: CHAR; p: SYSTEM.PTR END ;
|
align: RECORD ch: CHAR; p: SYSTEM.PTR END ;
|
||||||
BEGIN
|
BEGIN
|
||||||
IF n > 0 THEN MarkStack(n-1, cand); (* flush register windows by means of recursive calls *)
|
IF n > 0 THEN MarkStack(n-1, cand); (* flush register windows by means of recursive calls *)
|
||||||
|
|
|
||||||
|
|
@ -209,7 +209,6 @@ extern void Heap_INCREF();
|
||||||
// Main module initialisation, registration and finalisation
|
// Main module initialisation, registration and finalisation
|
||||||
|
|
||||||
extern void Platform_Init(INTEGER argc, LONGINT argv);
|
extern void Platform_Init(INTEGER argc, LONGINT argv);
|
||||||
extern void *Platform_MainModule;
|
|
||||||
extern void Heap_FINALL();
|
extern void Heap_FINALL();
|
||||||
|
|
||||||
#define __INIT(argc, argv) static void *m; Platform_Init((INTEGER)argc, (LONGINT)(uintptr_t)&argv);
|
#define __INIT(argc, argv) static void *m; Platform_Init((INTEGER)argc, (LONGINT)(uintptr_t)&argv);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue