mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 06:22:25 +00:00
Add SYSTEM types INT8 through INT64. Define LINT as derived type of SYSTEM.INT64.
This commit is contained in:
parent
b6385f8b8c
commit
7df022d94e
29 changed files with 344 additions and 192 deletions
|
|
@ -211,7 +211,7 @@ void OPC_Ident (OPT_Object obj)
|
|||
OPM_WriteStringVar((void*)OPM_modName, ((LONGINT)(32)));
|
||||
}
|
||||
OPM_Write('_');
|
||||
} else if ((obj == OPT_sysptrtyp->strobj || obj == OPT_ainttyp->strobj) || obj == OPT_bytetyp->strobj) {
|
||||
} else if ((((((obj == OPT_sysptrtyp->strobj || obj == OPT_ainttyp->strobj) || obj == OPT_int8typ->strobj) || obj == OPT_int16typ->strobj) || obj == OPT_int32typ->strobj) || obj == OPT_int64typ->strobj) || obj == OPT_bytetyp->strobj) {
|
||||
OPM_WriteString((CHAR*)"SYSTEM_", (LONGINT)8);
|
||||
}
|
||||
OPM_WriteStringVar((void*)obj->name, ((LONGINT)(256)));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue