[Ada] Reject allocators in contexts restricted by SPARK
authorPiotr Trojanek <trojanek@adacore.com>
Wed, 3 Mar 2021 22:18:01 +0000 (23:18 +0100)
committerPierre-Marie de Rodat <derodat@adacore.com>
Thu, 17 Jun 2021 14:32:08 +0000 (10:32 -0400)
gcc/ada/

* sem_ch4.adb (Analyze_Allocator): Reject allocators in
restricted contexts.

gcc/ada/sem_ch4.adb

index d849834..ede257b 100644 (file)
@@ -889,6 +889,16 @@ package body Sem_Ch4 is
          Check_Restriction (No_Local_Allocators, N);
       end if;
 
+      if SPARK_Mode = On
+        and then Comes_From_Source (N)
+        and then not Is_OK_Volatile_Context (Context       => Parent (N),
+                                             Obj_Ref       => N,
+                                             Check_Actuals => False)
+      then
+         Error_Msg_N
+           ("allocator cannot appear in this context (SPARK RM 7.1.3(10))", N);
+      end if;
+
       if Serious_Errors_Detected > Sav_Errs then
          Set_Error_Posted (N);
          Set_Etype (N, Any_Type);