aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/exp_ch6.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-10-11 11:04:40 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-10-11 11:04:40 +0200
commit2b3d67a55b8f6589dd52eea452e464c628d20bdf (patch)
tree04579e5de4cf8cf5f0426dbd1e60ff0cbd0869be /gcc/ada/exp_ch6.ads
parentfb468a944c0dae2086e811b18d2da7935f642fc5 (diff)
downloadgcc-2b3d67a55b8f6589dd52eea452e464c628d20bdf.zip
gcc-2b3d67a55b8f6589dd52eea452e464c628d20bdf.tar.gz
gcc-2b3d67a55b8f6589dd52eea452e464c628d20bdf.tar.bz2
[multiple changes]
2010-10-11 Robert Dewar <dewar@adacore.com> * sem_prag.adb, sem_aggr.adb, sprint.adb: Minor reformatting. 2010-10-11 Javier Miranda <miranda@adacore.com> * exp_ch5.ads, exp_ch6.ads (Expand_N_Extended_Return_Statement): Moved to exp_ch6. (Expand_N_Simple_Return_Statement): Moved to exp_ch6. * exp_ch5.adb, exp_ch6.adb (Expand_Non_Function_Return): Moved to exp_ch6. (Expand_Simple_Function_Return): Move to exp_ch6. (Expand_N_Extended_Return_Statement): Moved to exp_ch6. (Expand_N_Simple_Return_Statement): Moved to exp_ch6. 2010-10-11 Robert Dewar <dewar@adacore.com> * snames.ads-tmpl: Add names for aspects. * aspects.ads, aspects.adb: New. * gcc-interface/Make-lang.in: Update dependencies. From-SVN: r165281
Diffstat (limited to 'gcc/ada/exp_ch6.ads')
-rw-r--r--gcc/ada/exp_ch6.ads14
1 files changed, 8 insertions, 6 deletions
diff --git a/gcc/ada/exp_ch6.ads b/gcc/ada/exp_ch6.ads
index 242995f..e04e217 100644
--- a/gcc/ada/exp_ch6.ads
+++ b/gcc/ada/exp_ch6.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2008, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2010, 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- --
@@ -29,11 +29,13 @@ with Types; use Types;
package Exp_Ch6 is
- procedure Expand_N_Function_Call (N : Node_Id);
- procedure Expand_N_Subprogram_Body (N : Node_Id);
- procedure Expand_N_Subprogram_Body_Stub (N : Node_Id);
- procedure Expand_N_Subprogram_Declaration (N : Node_Id);
- procedure Expand_N_Procedure_Call_Statement (N : Node_Id);
+ procedure Expand_N_Extended_Return_Statement (N : Node_Id);
+ procedure Expand_N_Function_Call (N : Node_Id);
+ procedure Expand_N_Procedure_Call_Statement (N : Node_Id);
+ procedure Expand_N_Simple_Return_Statement (N : Node_Id);
+ procedure Expand_N_Subprogram_Body (N : Node_Id);
+ procedure Expand_N_Subprogram_Body_Stub (N : Node_Id);
+ procedure Expand_N_Subprogram_Declaration (N : Node_Id);
procedure Expand_Call (N : Node_Id);
-- This procedure contains common processing for Expand_N_Function_Call,