aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/exp_ch11.ads
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2013-04-11 10:39:15 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2013-04-11 12:39:15 +0200
commitc8d636509a850e8e90b995426241fa5054728367 (patch)
treea1de6d2f72ee6430d13b59a7e4b07057eea1c2e5 /gcc/ada/exp_ch11.ads
parent845f06e288259ec222b6b6bf00cbe889397f8938 (diff)
downloadgcc-c8d636509a850e8e90b995426241fa5054728367.zip
gcc-c8d636509a850e8e90b995426241fa5054728367.tar.gz
gcc-c8d636509a850e8e90b995426241fa5054728367.tar.bz2
exp_ch11.ads, [...] (Expand_N_Raise_Expression): New procedure.
2013-04-11 Robert Dewar <dewar@adacore.com> * exp_ch11.ads, exp_ch11.adb (Expand_N_Raise_Expression): New procedure. * exp_util.adb (Insert_Actions): Add entry for N_Raise_Expression. * expander.adb: Add call to Expand_N_Raise_Expression. * par-ch11.adb (P_Raise_Expression): New procedure. * par-ch4.adb (P_Relation): Handle Raise_Expression. * par.adb (P_Raise_Expression): New procedure. * sem.adb: Add handling for N_Raise_Expression. * sem_ch11.ads, sem_ch11.adb (Analyze_Raise_Expression): New procedure. * sem_res.adb (Resolve): Add handling for N_Raise_Expression. * sinfo.ads, sinfo.adb (N_Raise_Expression): New node. * sprint.adb (Sprint_Node_Actual): Add handling for N_Raise_Expression. * stand.ads (Any_Type): Document use with N_Raise_Expression. From-SVN: r197764
Diffstat (limited to 'gcc/ada/exp_ch11.ads')
-rw-r--r--gcc/ada/exp_ch11.ads3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/exp_ch11.ads b/gcc/ada/exp_ch11.ads
index d715a27..96887e2 100644
--- a/gcc/ada/exp_ch11.ads
+++ b/gcc/ada/exp_ch11.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2013, 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- --
@@ -31,6 +31,7 @@ package Exp_Ch11 is
procedure Expand_N_Exception_Declaration (N : Node_Id);
procedure Expand_N_Handled_Sequence_Of_Statements (N : Node_Id);
procedure Expand_N_Raise_Constraint_Error (N : Node_Id);
+ procedure Expand_N_Raise_Expression (N : Node_Id);
procedure Expand_N_Raise_Program_Error (N : Node_Id);
procedure Expand_N_Raise_Statement (N : Node_Id);
procedure Expand_N_Raise_Storage_Error (N : Node_Id);