diff options
Diffstat (limited to 'gcc/ada/sem.adb')
-rw-r--r-- | gcc/ada/sem.adb | 80 |
1 files changed, 47 insertions, 33 deletions
diff --git a/gcc/ada/sem.adb b/gcc/ada/sem.adb index 7a67a43..783c94aa 100644 --- a/gcc/ada/sem.adb +++ b/gcc/ada/sem.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -23,38 +23,43 @@ -- -- ------------------------------------------------------------------------------ -with Atree; use Atree; -with Debug; use Debug; -with Debug_A; use Debug_A; -with Elists; use Elists; -with Exp_SPARK; use Exp_SPARK; -with Expander; use Expander; -with Ghost; use Ghost; -with Lib; use Lib; -with Lib.Load; use Lib.Load; -with Nlists; use Nlists; -with Output; use Output; -with Restrict; use Restrict; -with Sem_Attr; use Sem_Attr; -with Sem_Ch2; use Sem_Ch2; -with Sem_Ch3; use Sem_Ch3; -with Sem_Ch4; use Sem_Ch4; -with Sem_Ch5; use Sem_Ch5; -with Sem_Ch6; use Sem_Ch6; -with Sem_Ch7; use Sem_Ch7; -with Sem_Ch8; use Sem_Ch8; -with Sem_Ch9; use Sem_Ch9; -with Sem_Ch10; use Sem_Ch10; -with Sem_Ch11; use Sem_Ch11; -with Sem_Ch12; use Sem_Ch12; -with Sem_Ch13; use Sem_Ch13; -with Sem_Prag; use Sem_Prag; -with Sem_Util; use Sem_Util; -with Sinfo; use Sinfo; -with Stand; use Stand; -with Stylesw; use Stylesw; -with Uintp; use Uintp; -with Uname; use Uname; +with Atree; use Atree; +with Debug; use Debug; +with Debug_A; use Debug_A; +with Einfo; use Einfo; +with Einfo.Entities; use Einfo.Entities; +with Einfo.Utils; use Einfo.Utils; +with Elists; use Elists; +with Exp_SPARK; use Exp_SPARK; +with Expander; use Expander; +with Ghost; use Ghost; +with Lib; use Lib; +with Lib.Load; use Lib.Load; +with Nlists; use Nlists; +with Output; use Output; +with Restrict; use Restrict; +with Sem_Attr; use Sem_Attr; +with Sem_Ch2; use Sem_Ch2; +with Sem_Ch3; use Sem_Ch3; +with Sem_Ch4; use Sem_Ch4; +with Sem_Ch5; use Sem_Ch5; +with Sem_Ch6; use Sem_Ch6; +with Sem_Ch7; use Sem_Ch7; +with Sem_Ch8; use Sem_Ch8; +with Sem_Ch9; use Sem_Ch9; +with Sem_Ch10; use Sem_Ch10; +with Sem_Ch11; use Sem_Ch11; +with Sem_Ch12; use Sem_Ch12; +with Sem_Ch13; use Sem_Ch13; +with Sem_Prag; use Sem_Prag; +with Sem_Util; use Sem_Util; +with Sinfo; use Sinfo; +with Sinfo.Nodes; use Sinfo.Nodes; +with Sinfo.Utils; use Sinfo.Utils; +with Stand; use Stand; +with Stylesw; use Stylesw; +with Uintp; use Uintp; +with Uname; use Uname; with Unchecked_Deallocation; @@ -293,6 +298,9 @@ package body Sem is when N_Goto_Statement => Analyze_Goto_Statement (N); + when N_Goto_When_Statement => + Analyze_Goto_When_Statement (N); + when N_Handled_Sequence_Of_Statements => Analyze_Handled_Statements (N); @@ -500,6 +508,9 @@ package body Sem is when N_Raise_Statement => Analyze_Raise_Statement (N); + when N_Raise_When_Statement => + Analyze_Raise_When_Statement (N); + when N_Raise_xxx_Error => Analyze_Raise_xxx_Error (N); @@ -521,6 +532,9 @@ package body Sem is when N_Requeue_Statement => Analyze_Requeue (N); + when N_Return_When_Statement => + Analyze_Return_When_Statement (N); + when N_Simple_Return_Statement => Analyze_Simple_Return_Statement (N); |