mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
4ff0bd5f98728d14a91d62d44fe1fa4bdd0bee33
The compiler can crash with a Storage_Error for a failed precondition when compiling a call to a dispatching subprogram where an actual for a controlling formal is given by an if_expression whose dependent expressions are tag-indeterminate calls. This problem showed up on a build of Alire (on the compilation of alire-roots.adb) done during a build_gnat_world mailserver (as well as having been noticed and reported separately by another engineering team). The code in Sem_Disp.Check_Dispatching_Call for checking nondispatching procedure calls for actuals that are calls to abstract tag-indeterminate functions did not account for conditional expressions, and attempted to retrieve the (nonexistent) Expression field from an N_If_Expression node, failing the precondition for Expression. It was discovered that none of the code checking for illegal calls to abstract tag-indeterminate functions in procedure calls is needed, and the whole related "elsif" part is removed by this change. (Note that there is separate checking done separately within Check_Dispatching_Call that will catch nondispatching calls to abstract functions.) gcc/ada/ChangeLog: * sem_disp.adb (Check_Dispatching_Call): Remove "elsif" that does error checking for abstract tag-indeterminate calls (seems to be no longer needed).
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
This directory contains the GNU Compiler Collection (GCC). The GNU Compiler Collection is free software. See the files whose names start with COPYING for copying permission. The manuals, and some of the runtime libraries, are under different terms; see the individual source files for details. The directory INSTALL contains copies of the installation information as HTML and plain text. The source of this information is gcc/doc/install.texi. The installation information includes details of what is included in the GCC sources and what files GCC installs. See the file gcc/doc/gcc.texi (together with other files that it includes) for usage and porting information. An online readable version of the manual is in the files gcc/doc/gcc.info*. See http://gcc.gnu.org/bugs/ for how to report bugs usefully. Copyright years on GCC source files may be listed using range notation, e.g., 1987-2012, indicating that every year in the range, inclusive, is a copyrightable year that could otherwise be listed individually.
Description
Languages
C++
30.8%
C
30.2%
Ada
14.4%
D
6.1%
Go
5.7%
Other
12.3%