mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
Allow initializers where a string literal begins a longer expression.
This is needed to support cases like: char s[5] = {"abc"[1]};
This commit is contained in:
parent
1f468c437f
commit
e7940db4c8
29
Parser.pas
29
Parser.pas
@ -1863,6 +1863,7 @@ var
|
||||
ip: identList; {used to place an id in the list}
|
||||
isStatic: boolean; {static storage duration (or automatic)?}
|
||||
luseGlobalPool: boolean; {local copy of useGlobalPool}
|
||||
tToken: tokenType; {temporary copy of token}
|
||||
|
||||
|
||||
procedure InsertInitializerRecord (iPtr: initializerPtr; size: longint);
|
||||
@ -2329,6 +2330,7 @@ var
|
||||
lSuppressMacroExpansions: boolean;{local copy of suppressMacroExpansions}
|
||||
maxDisp: longint; {maximum disp value so far}
|
||||
newDisp: longint; {new disp set by a designator}
|
||||
nextTokenKind: tokenEnum; {kind of next token}
|
||||
startingDisp: longint; {disp at start of this term}
|
||||
stringElementType: typePtr; {element type of string literal}
|
||||
stringLength: integer; {elements in a string literal}
|
||||
@ -2464,13 +2466,18 @@ var
|
||||
kind := ktp^.kind;
|
||||
|
||||
{handle string constants}
|
||||
if token.kind = stringConst then
|
||||
if (token.kind = stringConst) and (kind = scalarType) then begin
|
||||
stringElementType := StringType(token.prefix)^.aType;
|
||||
if (token.kind = stringConst) and (kind = scalarType) and
|
||||
(((ktp^.baseType in [cgByte,cgUByte])
|
||||
and (stringElementType = charPtr))
|
||||
or CompTypes(ktp,stringElementType)) then begin
|
||||
stringLength := token.sval^.length div ord(stringElementType^.size);
|
||||
if ((ktp^.baseType in [cgByte,cgUByte]) and (stringElementType^.size=1))
|
||||
or CompTypes(ktp,stringElementType) then begin
|
||||
tToken := token;
|
||||
NextToken;
|
||||
nextTokenKind := token.kind;
|
||||
PutBackToken(token, false, true);
|
||||
token := tToken;
|
||||
if nextTokenKind in [commach, rbracech, semicolonch] then begin
|
||||
stringLength :=
|
||||
token.sval^.length div ord(stringElementType^.size);
|
||||
if tp^.elements = 0 then begin
|
||||
tp^.elements := stringLength;
|
||||
RecomputeSizes(variable^.itype);
|
||||
@ -2514,10 +2521,13 @@ var
|
||||
end; {else}
|
||||
end; {with}
|
||||
NextToken;
|
||||
end {if}
|
||||
goto 1;
|
||||
end; {if}
|
||||
end; {if}
|
||||
end; {if}
|
||||
|
||||
{handle arrays not initialized with a string constant}
|
||||
else if kind in
|
||||
if kind in
|
||||
[scalarType,pointerType,enumType,arrayType,structType,unionType] then
|
||||
begin
|
||||
count := 0; {get the expressions|initializers}
|
||||
@ -2749,7 +2759,7 @@ var
|
||||
Error(47);
|
||||
errorFound := true;
|
||||
end; {else}
|
||||
|
||||
1:
|
||||
if braces then begin {if there was an opening brace then }
|
||||
if token.kind = commach then { insist on a closing brace }
|
||||
NextToken;
|
||||
@ -2763,7 +2773,6 @@ var
|
||||
errorFound := true;
|
||||
end; {else}
|
||||
end; {if}
|
||||
1:
|
||||
end; {InitializeTerm}
|
||||
|
||||
begin {Initializer}
|
||||
|
Loading…
Reference in New Issue
Block a user