aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJavier Miranda <miranda@adacore.com>2023-03-29 18:48:19 +0000
committerMarc Poulhiès <poulhies@adacore.com>2023-05-29 10:23:18 +0200
commit833f91bb67700571e03095d4cb0a5055372cff4d (patch)
tree83685a99e94393030fd47723f7a7497a3de84c3a /gcc
parentf180888c8f38920e6731e5bc1dc5e06f5ac7d340 (diff)
downloadgcc-833f91bb67700571e03095d4cb0a5055372cff4d.zip
gcc-833f91bb67700571e03095d4cb0a5055372cff4d.tar.gz
gcc-833f91bb67700571e03095d4cb0a5055372cff4d.tar.bz2
ada: Spurious error on string interpolation
The frontend reports spurious errors on operators found in interpolated string literals. gcc/ada/ * scans.ads (Inside_Interpolated_String_Expression): New variable. * par-ch2.adb (P_Interpolated_String_Literal): Set/clear new variable when parsing interpolated string expressions. * scng.adb (Set_String): Skip processing operator symbols when we arescanning an interpolated string literal.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/par-ch2.adb17
-rw-r--r--gcc/ada/scans.ads3
-rw-r--r--gcc/ada/scng.adb10
3 files changed, 25 insertions, 5 deletions
diff --git a/gcc/ada/par-ch2.adb b/gcc/ada/par-ch2.adb
index b6814bd..af92f5a 100644
--- a/gcc/ada/par-ch2.adb
+++ b/gcc/ada/par-ch2.adb
@@ -225,6 +225,7 @@ package body Ch2 is
function P_Interpolated_String_Literal return Node_Id is
Elements_List : constant List_Id := New_List;
NL_Node : Node_Id;
+ Saved_State : constant Boolean := Inside_Interpolated_String_Literal;
String_Node : Node_Id;
begin
@@ -245,9 +246,17 @@ package body Ch2 is
-- Interpolated expression
if Token = Tok_Left_Curly_Bracket then
- Scan; -- past '{'
- Append_To (Elements_List, P_Expression);
- T_Right_Curly_Bracket;
+ declare
+ Saved_In_Expr : constant Boolean :=
+ Inside_Interpolated_String_Expression;
+
+ begin
+ Scan; -- past '{'
+ Inside_Interpolated_String_Expression := True;
+ Append_To (Elements_List, P_Expression);
+ Inside_Interpolated_String_Expression := Saved_In_Expr;
+ T_Right_Curly_Bracket;
+ end;
else
if Prev_Token = Tok_String_Literal then
NL_Node := New_Node (N_String_Literal, Token_Ptr);
@@ -266,7 +275,7 @@ package body Ch2 is
end loop;
end if;
- Inside_Interpolated_String_Literal := False;
+ Inside_Interpolated_String_Literal := Saved_State;
Set_Expressions (String_Node, Elements_List);
return String_Node;
diff --git a/gcc/ada/scans.ads b/gcc/ada/scans.ads
index 19e13b6..00381bb 100644
--- a/gcc/ada/scans.ads
+++ b/gcc/ada/scans.ads
@@ -482,6 +482,9 @@ package Scans is
-- or aspect. Used to allow/require nonstandard style rules for =>+ with
-- -gnatyt.
+ Inside_Interpolated_String_Expression : Boolean := False;
+ -- True while parsing an interpolated string expression
+
Inside_Interpolated_String_Literal : Boolean := False;
-- True while parsing an interpolated string literal
diff --git a/gcc/ada/scng.adb b/gcc/ada/scng.adb
index abf9c68..c2707df 100644
--- a/gcc/ada/scng.adb
+++ b/gcc/ada/scng.adb
@@ -951,12 +951,20 @@ package body Scng is
C3 : Character;
begin
+ -- Skip processing operator symbols if we are scanning an
+ -- interpolated string literal.
+
+ if Inside_Interpolated_String_Literal
+ and then not Inside_Interpolated_String_Expression
+ then
+ null;
+
-- Token_Name is currently set to Error_Name. The following
-- section of code resets Token_Name to the proper Name_Op_xx
-- value if the string is a valid operator symbol, otherwise it is
-- left set to Error_Name.
- if Slen = 1 then
+ elsif Slen = 1 then
C1 := Source (Token_Ptr + 1);
case C1 is