aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sem.adb
diff options
context:
space:
mode:
authorEd Schonberg <schonberg@adacore.com>2018-05-22 13:25:22 +0000
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>2018-05-22 13:25:22 +0000
commit801b4022e11b50c4124b489ccc621332b2d92946 (patch)
tree4f2c12ed748b28bddeeadaefb7cccf0baafd8660 /gcc/ada/sem.adb
parent208ebca928f079408cea3562a0006bc1bb8092fa (diff)
downloadgcc-801b4022e11b50c4124b489ccc621332b2d92946.zip
gcc-801b4022e11b50c4124b489ccc621332b2d92946.tar.gz
gcc-801b4022e11b50c4124b489ccc621332b2d92946.tar.bz2
[Ada] Ada2020: Reduction expressions
This patch dismantles the prototype implementation of the first proposal for Reduction expressions, one of the important potentially parallel constructs for Ada2020. The ARG is going in a different direction with a simpler syntax. 2018-05-22 Ed Schonberg <schonberg@adacore.com> gcc/ada/ * exp_ch4.ads, exp_ch4.adb, exp_util.adb, expander.adb: Remove mention of N_Reduction_Expression and N_Reduction_Expression_Parameter. * par-ch4.adb: Remove parsing routines for reduction expressions. * sem.adb, sinfo.ads, sinfo.adb, sem_ch4.ads, sem_ch4.adb, sem_res.adb, sem_spark.adb, sprint.adb: Remove analysis routines for reduction expressions. From-SVN: r260524
Diffstat (limited to 'gcc/ada/sem.adb')
-rw-r--r--gcc/ada/sem.adb6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/ada/sem.adb b/gcc/ada/sem.adb
index c1fb188..4987845 100644
--- a/gcc/ada/sem.adb
+++ b/gcc/ada/sem.adb
@@ -515,12 +515,6 @@ package body Sem is
when N_Record_Representation_Clause =>
Analyze_Record_Representation_Clause (N);
- when N_Reduction_Expression =>
- Analyze_Reduction_Expression (N);
-
- when N_Reduction_Expression_Parameter =>
- Analyze_Reduction_Expression_Parameter (N);
-
when N_Reference =>
Analyze_Reference (N);