Restore old order of baseTypeEnum values.

The ordinal values of these are hard-coded in code for handling pc_cnv/pc_cnn, so let's avoid changing them.
This commit is contained in:
Stephen Heumann 2021-01-29 23:22:28 -06:00
parent fa835aca43
commit 2222e4a0b4
1 changed files with 2 additions and 2 deletions

View File

@ -147,9 +147,9 @@ type
{ the compiler. Any values whose type is cc must be resolved to one }
{ of the cg types before the code generator is called. }
baseTypeEnum = (cgByte,cgUByte,cgWord,cgUWord,cgLong,cgULong,cgQuad,cgUQuad,
baseTypeEnum = (cgByte,cgUByte,cgWord,cgUWord,cgLong,cgULong,
cgReal,cgDouble,cgComp,cgExtended,cgString,
cgVoid,ccPointer);
cgVoid,cgQuad,cgUQuad,ccPointer);
{ Basic types (plus the void type) as defined by the C language. }
{ This differs from baseTypeEnum in that different types with the }