8sa1-gcc/gcc/ada
Eric Botcazou e835226bab Fix GIMPLE verification failure in LTO mode on Ada code
The issue is that tree_is_indexable doesn't return the same result for
a FIELD_DECL with QUAL_UNION_TYPE and the QUAL_UNION_TYPE, resulting
in two instances of the QUAL_UNION_TYPE in the bytecode.  The result
for the type is the correct one (false, since it is variably modified)
while the result for the field is falsely true because:

  else if (TREE_CODE (t) == FIELD_DECL
           && lto_variably_modified_type_p (DECL_CONTEXT (t)))
    return false;

is not satisfied.  The reason for this is that the DECL_QUALIFIER of
fields of a QUAL_UNION_TYPE depends on a discriminant in Ada, which
means that the size of the type does too (CONTAINS_PLACEHOLDER_P),
which in turn means that it is reset to a mere PLACEHOLDER_EXPR by
free_lang_data, which finally means that the size of DECL_CONTEXT is
too, so RETURN_TRUE_IF_VAR is false.

In other words, the CONTAINS_PLACEHOLDER_P property of the DECL_QUALIFIER
of fields of a QUAL_UNION_TYPE hides the variably_modified_type_p property
of  these fields, if you look from the outside.

	PR middle-end/93961
	* tree.c (variably_modified_type_p) <RECORD_TYPE>: Recurse into
	fields whose type is a qualified union.
2020-03-11 11:34:25 +01:00
..
doc [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
gcc-interface Fix internal error on locally-defined subpools 2020-03-11 10:56:10 +01:00
libgnarl [Ada] Mark Deallocator as Favor_Top_Level 2019-12-16 10:34:56 +00:00
libgnat [Ada] Fix uninitialized out parameter in s-regpat.adb 2019-12-18 07:16:17 +00:00
ada_get_targ.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
adabkend.adb [Ada] Accept compilation switches -Og/-Ofast in non-GCC backends 2019-07-05 07:02:13 +00:00
adabkend.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
adadecode.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
adadecode.h [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
adaint.c [Ada] Fix errno for rename for the VxWorks 6 target 2019-09-18 08:32:09 +00:00
adaint.h Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
affinity.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
ali-util.adb [Ada] Ignore missing ALI files in GNATprove mode 2019-09-17 07:59:48 +00:00
ali-util.ads [Ada] Ignore missing ALI files in GNATprove mode 2019-09-17 07:59:48 +00:00
ali.adb [Ada] Minor reformattings 2019-08-20 09:50:14 +00:00
ali.ads [Ada] Ignore missing ALI files in GNATprove mode 2019-09-17 07:59:48 +00:00
alloc.ads [Ada] New Repinfo.Input unit to read back JSON representation info. 2019-07-11 08:01:35 +00:00
argv-lynxos178-raven-cert.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
argv.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
aspects.adb [Ada] Minor reformattings 2019-08-20 09:50:14 +00:00
aspects.ads [Ada] Implement pragma Max_Entry_Queue_Length 2019-08-13 08:07:35 +00:00
atree.adb [Ada] 'others' in conditional_expressions 2019-10-10 15:24:01 +00:00
atree.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
atree.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
aux-io.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
back_end.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
back_end.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
bcheck.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
bcheck.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
binde.adb [Ada] Forced elaboration order in Elaboration order v4.0 2019-07-03 08:16:29 +00:00
binde.ads [Ada] ABE checks v3.0, foundations of Elaboration order v4.0 2019-07-03 08:14:57 +00:00
binderr.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
binderr.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
bindgen.adb [Ada] Flag Sec_Stack_Used incorrectly set by ghost code 2019-10-10 15:22:55 +00:00
bindgen.ads [Ada] ABE checks v3.0, foundations of Elaboration order v4.0 2019-07-03 08:14:57 +00:00
bindo-augmentors.adb [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo-augmentors.ads [Ada] Task-related circularities in Elaboration order v4.0 2019-07-09 07:55:00 +00:00
bindo-builders.adb [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo-builders.ads [Ada] New algorithm for Elaboration order v4.0 2019-07-08 08:13:43 +00:00
bindo-diagnostics.adb [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo-diagnostics.ads [Ada] Diagnostics in Elaboration order v4.0 2019-07-05 07:02:08 +00:00
bindo-elaborators.adb [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo-elaborators.ads [Ada] ABE checks v3.0, foundations of Elaboration order v4.0 2019-07-03 08:14:57 +00:00
bindo-graphs.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
bindo-graphs.ads [Ada] Bindo.Graphs: Minor typo fixes 2019-08-21 08:30:32 +00:00
bindo-units.adb [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo-units.ads [Ada] Elaboration order v4.0 and generic instantiations 2019-07-09 07:55:12 +00:00
bindo-validators.adb [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo-validators.ads [Ada] Diagnostics in Elaboration order v4.0 2019-07-05 07:02:08 +00:00
bindo-writers.adb [Ada] Elaboration order v4.0 and output of dependencies 2019-07-11 08:02:30 +00:00
bindo-writers.ads [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindo.adb [Ada] Elaboration order v4.0 and output of dependencies 2019-07-11 08:02:30 +00:00
bindo.ads [Ada] Elaboration order v4.0 and infinite loops 2019-07-11 08:01:21 +00:00
bindusg.adb [Ada] Minimal binder 2019-07-11 08:03:04 +00:00
bindusg.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
butil.adb [Ada] Forced elaboration order in Elaboration order v4.0 2019-07-03 08:16:29 +00:00
butil.ads [Ada] Forced elaboration order in Elaboration order v4.0 2019-07-03 08:16:29 +00:00
cal.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
casing.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
casing.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
ceinfo.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
ChangeLog Fix GIMPLE verification failure in LTO mode on Ada code 2020-03-11 11:34:25 +01:00
ChangeLog-2001
ChangeLog-2002
ChangeLog-2003
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014
ChangeLog-2015
ChangeLog-2016
ChangeLog-2017
ChangeLog-2018 gcc.c (process_command): Update copyright notice dates. 2019-01-01 12:34:49 +01:00
ChangeLog-2019 gcc.c (process_command): Update copyright notice dates. 2020-01-01 12:14:37 +01:00
ChangeLog.ptr
ChangeLog.tree-ssa
checks.adb [Ada] Minor reformatting and U.S. spelling adjustment 2019-12-16 10:34:08 +00:00
checks.ads [Ada] Fix spurious alignment warning on simple address clause 2019-09-18 08:33:44 +00:00
cio.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
clean.adb [Ada] Reformat comments 2019-07-09 07:55:06 +00:00
clean.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
comperr.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
comperr.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
config-lang.in
contracts.adb [Ada] New aspect/pragma No_Caching for analysis of volatile data 2019-08-12 08:59:53 +00:00
contracts.ads [Ada] New aspect/pragma No_Caching for analysis of volatile data 2019-08-12 08:59:53 +00:00
csets.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
csets.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
csinfo.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
cstand.adb [Ada] Minor housekeeping work in Create_Standard 2019-12-18 07:14:49 +00:00
cstand.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
cstreams.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
ctrl_c.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
debug_a.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
debug_a.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
debug.adb [Ada] Reserving switch d_K for known problem isssues detection 2019-12-18 07:14:44 +00:00
debug.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
einfo.adb [Ada] Assertion_Policy (Ignore) ignores invariants 2019-10-10 15:23:33 +00:00
einfo.ads [Ada] Einfo: fix typo in comment 2019-12-18 07:14:28 +00:00
elists.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
elists.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
elists.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
env.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
env.h [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
err_vars.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
errno.c [Ada] errno.c: remove obsolete support for MaRTE OS 2019-07-11 08:02:40 +00:00
errout.adb [Ada] Suppress unused warnings in the presence of errors 2019-12-16 10:35:31 +00:00
errout.ads [Ada] Minor: improve comments 2019-12-16 10:35:24 +00:00
erroutc.adb [Ada] Pragma Warning_As_Error works for style warnings 2019-08-20 09:48:51 +00:00
erroutc.ads [Ada] Pragma Warning_As_Error works for style warnings 2019-08-20 09:48:51 +00:00
errutil.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
errutil.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
eval_fat.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
eval_fat.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exit.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
exp_aggr.adb [Ada] Minor fix typo in comment 2019-12-13 09:04:53 +00:00
exp_aggr.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_atag.adb [Ada] Buffer reading overflow in dispatch table initialization 2019-08-19 08:36:39 +00:00
exp_atag.ads [Ada] Buffer reading overflow in dispatch table initialization 2019-08-19 08:36:39 +00:00
exp_attr.adb [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
exp_attr.ads [Ada] More precise handling of Size/Object_Size in GNATprove 2019-08-12 08:59:42 +00:00
exp_cg.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_cg.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch2.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch2.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch3.adb [Ada] Mention GNAT Studio instead of GPS 2019-10-10 15:23:19 +00:00
exp_ch3.ads [Ada] Minor reformattings 2019-08-20 09:50:14 +00:00
exp_ch4.adb [Ada] Adding support for unsupported type conversion in CCG 2019-12-13 09:04:43 +00:00
exp_ch4.ads [Ada] Minor reformatting 2019-07-04 08:07:14 +00:00
exp_ch5.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
exp_ch5.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch6.adb [Ada] Do not issue restriction violations on ignored ghost code 2019-12-16 10:33:41 +00:00
exp_ch6.ads [Ada] Adding assertions on extra formals for BIP function calls 2019-09-17 07:59:33 +00:00
exp_ch7.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
exp_ch7.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch8.adb [Ada] Expand renamings of subcomponents of an atomic or VFA object 2019-12-16 10:33:59 +00:00
exp_ch8.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch9.adb [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
exp_ch9.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch10.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch11.adb [Ada] Minor reformattings 2019-08-20 09:50:14 +00:00
exp_ch11.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
exp_ch12.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch12.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_ch13.adb [Ada] Crash on a Storage_Size aspect depending on attr. of another type 2019-08-20 09:50:38 +00:00
exp_ch13.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_code.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_code.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
exp_dbug.adb [Ada] Remove duplicated routines for getting homonym number 2019-09-19 08:13:25 +00:00
exp_dbug.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
exp_disp.adb [Ada] Deallocation of controlled type implementing interface types 2019-12-13 09:04:18 +00:00
exp_disp.ads [Ada] Deallocation of controlled type implementing interface types 2019-12-13 09:04:18 +00:00
exp_dist.adb [Ada] Fix incorrect stub generation for types in instances 2019-08-19 08:36:21 +00:00
exp_dist.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_fixd.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_fixd.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_imgv.adb [Ada] Crash on Image and Value attributes 2019-07-08 08:12:55 +00:00
exp_imgv.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_intr.adb [Ada] Deallocation of controlled type implementing interface types 2019-12-13 09:04:18 +00:00
exp_intr.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_pakd.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
exp_pakd.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_prag.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_prag.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_sel.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_sel.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_smem.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_smem.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_spark.adb [Ada] Factor out code for deciding statically known Constrained attributes 2019-09-18 08:32:19 +00:00
exp_spark.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_strm.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_strm.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_tss.adb [Ada] Spurious error on non-default C++ constructor 2019-07-04 08:07:24 +00:00
exp_tss.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
exp_unst.adb [Ada] Unnesting and annex E 2019-12-13 09:05:38 +00:00
exp_unst.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
exp_util.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
exp_util.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
expander.adb [Ada] Do not erase precise type on fixed-point real literal 2019-07-08 08:13:52 +00:00
expander.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
expect.c re PR ada/92575 (couple of suspicious assignments in expect.c) 2019-11-25 10:29:51 +00:00
fe.h [Ada] Export the Ada version through the C interface 2019-12-16 10:34:12 +00:00
final.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fmap.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fmap.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fname-sf.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fname-sf.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fname-uf.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fname-uf.ads [Ada] Reformat comments 2019-07-09 07:55:06 +00:00
fname.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
fname.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
freeze.adb [Ada] Remove new strict-alignment check added by AI12-0001 2019-12-16 10:34:47 +00:00
freeze.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
frontend.adb [Ada] Skip entity name qualification in GNATprove mode 2019-09-18 08:32:28 +00:00
frontend.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
get_scos.adb [Ada] Get_Scos: Remove bogus, dead code 2019-07-04 08:05:08 +00:00
get_scos.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
get_targ.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
get_targ.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
ghost.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
ghost.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnat1drv.adb [Ada] Fix handling of -gnatceg on incomplete unit 2019-10-10 15:23:28 +00:00
gnat1drv.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnat_rm.texi gcc.c (process_command): Update copyright notice dates. 2020-01-01 12:14:37 +01:00
gnat_ugn.texi gcc.c (process_command): Update copyright notice dates. 2020-01-01 12:14:37 +01:00
gnat-style.texi
gnatbind.adb [Ada] Minimal binder 2019-07-11 08:03:04 +00:00
gnatbind.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatchop.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatclean.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatcmd.adb [Ada] Add ability to list compiler switches with gnatcmd 2019-08-13 08:06:29 +00:00
gnatcmd.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatdll.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatfind.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnathtml.pl
gnatkr.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatkr.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatlink.adb [Ada] Reformat comments 2019-07-09 07:55:06 +00:00
gnatlink.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatls.adb [Ada] Mention GNAT Studio instead of GPS 2019-10-10 15:23:19 +00:00
gnatls.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatmake.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatmake.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatname.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatname.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatprep.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatprep.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatvsn.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gnatvsn.ads * gnatvsn.ads: Bump copyright year. 2020-01-04 08:31:22 +00:00
gnatxref.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gprep.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gprep.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
gsocket.h [Ada] Support for local unix sockets in GNAT.Sockets API 2019-09-17 07:59:23 +00:00
hostparm.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
impunit.adb [Ada] AI12-0234/321 atomic operations 2019-12-16 10:34:51 +00:00
impunit.ads [Ada] Ada2020: Update Impunit for Ada 202X 2019-12-13 09:03:50 +00:00
indepsw-aix.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
indepsw-darwin.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
indepsw-gnu.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
indepsw.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
indepsw.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
init.c [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
initialize.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
inline.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
inline.ads [Ada] Compiler speedup with inlining across units 2019-08-14 09:52:15 +00:00
itypes.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
itypes.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
krunch.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
krunch.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
layout.adb [Ada] Do not propagate Object_Size onto Size for composite types 2019-12-18 07:14:23 +00:00
layout.ads [Ada] Spell "laid" correctly 2019-07-03 08:14:29 +00:00
lib-list.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib-load.adb [Ada] Get rid of linear searches in Lib 2019-08-20 09:48:33 +00:00
lib-load.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib-sort.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib-util.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib-util.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib-writ.adb [Ada] Get rid of linear searches in Lib 2019-08-20 09:48:33 +00:00
lib-writ.ads [Ada] Mention GNAT Studio instead of GPS 2019-10-10 15:23:19 +00:00
lib-xref-spark_specific.adb [Ada] Set dummy Etype for the fake __HEAP entity in GNATprove 2019-07-08 08:14:15 +00:00
lib-xref.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib-xref.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
lib.adb [Ada] Get rid of linear searches in Lib 2019-08-20 09:48:33 +00:00
lib.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
link.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
live.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
live.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
locales.c * locales.c (iso_3166): Add missing comma after "United-States". 2019-10-27 21:46:54 +01:00
make_util.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
make_util.ads [Ada] Force even timestamp in Windows ALI files 2019-09-17 08:02:20 +00:00
Make-generated.in
make.adb [Ada] Fix typo in error message 2019-09-18 08:32:00 +00:00
make.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
Makefile.in
Makefile.rtl [Ada] AI12-0234/321 atomic operations 2019-12-16 10:34:51 +00:00
makeusg.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
makeusg.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mdll-fil.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mdll-fil.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mdll-utl.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mdll-utl.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mdll.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mdll.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mingw32.h [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
mkdir.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
namet-sp.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
namet-sp.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
namet.adb [Ada] Forced elaboration order in Elaboration order v4.0 2019-07-03 08:16:29 +00:00
namet.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
namet.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
nlists.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
nlists.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
nlists.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
nmake.adt
opt.adb [Ada] Minor reformatting 2019-07-04 08:05:40 +00:00
opt.ads [Ada] Export the Ada version through the C interface 2019-12-16 10:34:12 +00:00
osint-b.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint-b.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint-c.adb [Ada] Allow multiple units per file in GNATprove 2019-07-10 09:01:53 +00:00
osint-c.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint-l.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint-l.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint-m.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint-m.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
osint.adb * osint.adb (OS_Time_To_GNAT_Time): Remove dependency on To_C/To_Ada 2019-09-26 16:10:46 +02:00
osint.ads [Ada] Force even timestamp in Windows ALI files 2019-09-17 08:02:20 +00:00
output.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
output.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
par_sco.adb [Ada] Minor reformattings 2019-08-20 09:50:14 +00:00
par_sco.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
par-ch2.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-ch3.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-ch4.adb [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
par-ch5.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-ch6.adb [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
par-ch7.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-ch8.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
par-ch9.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-ch10.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-ch11.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
par-ch12.adb [Ada] AI12-0282: shared variable control aspects on formal types 2019-12-18 07:14:54 +00:00
par-ch13.adb [Ada] Reject aspect specifications on number constants 2019-12-18 07:14:39 +00:00
par-endh.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par-labl.adb [Ada] Reformat comments 2019-07-09 07:55:06 +00:00
par-load.adb [Ada] Clean up support for validity checks in the compiler 2019-07-04 08:07:19 +00:00
par-prag.adb [Ada] New pragma Aggregate_Individually_Assign 2019-08-20 09:49:41 +00:00
par-sync.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
par-tchk.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
par-util.adb [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
par.adb [Ada] Syntax error on improperly indented imported subprogram 2019-12-16 10:34:22 +00:00
par.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
pprint.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
pprint.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
prep.adb [Ada] Reformat comments 2019-07-09 07:55:06 +00:00
prep.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
prepcomp.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
prepcomp.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
put_scos.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
put_scos.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
raise-gcc.c Initialize barrier_cache for ARM EH ABI compliance 2020-02-06 03:59:45 -03:00
raise.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
raise.h [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
repinfo-input.adb [Ada] New Repinfo.Input unit to read back JSON representation info. 2019-07-11 08:01:35 +00:00
repinfo-input.ads [Ada] New Repinfo.Input unit to read back JSON representation info. 2019-07-11 08:01:35 +00:00
repinfo.adb [Ada] More complete information level for -gnatR4 output 2019-08-21 08:30:58 +00:00
repinfo.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
repinfo.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
restrict.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
restrict.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
rident.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
rtfinal.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
rtinit.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
rtsfind.adb [Ada] Flag Sec_Stack_Used incorrectly set by ghost code 2019-10-10 15:22:55 +00:00
rtsfind.ads [Ada] Rtsfind: minor comment fixes 2019-12-13 09:03:45 +00:00
runtime.h Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
s-oscons-tmplt.c [Ada] Support for local unix sockets in GNAT.Sockets API 2019-09-17 07:59:23 +00:00
sa_messages.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sa_messages.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
scans.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
scans.ads [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
scil_ll.adb [Ada] Removing support for SCIL "contract-only" subprogram bodies 2019-07-05 07:02:28 +00:00
scil_ll.ads [Ada] Removing support for SCIL "contract-only" subprogram bodies 2019-07-05 07:02:28 +00:00
scn.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
scn.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
scng.adb [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
scng.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
scos.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
scos.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
scos.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
sdefault.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
seh_init.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
sem_aggr.adb [Ada] AI12-0001: Independence and Representation clauses for atomic objects 2019-12-16 10:34:33 +00:00
sem_aggr.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
sem_attr.adb [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
sem_attr.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_aux.adb [Ada] Do not crash with -gnatR3 on Ghost aspects 2019-08-14 09:52:39 +00:00
sem_aux.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
sem_case.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_case.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_cat.adb [Ada] Various minor typo fixes 2019-10-10 15:25:18 +00:00
sem_cat.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch2.adb [Ada] Minor reformatting 2019-07-11 08:02:03 +00:00
sem_ch2.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch3.adb [Ada] Wrong error on hidden must-override primitive 2019-12-18 07:14:13 +00:00
sem_ch3.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch4.adb [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
sem_ch4.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch5.adb [Ada] AI12-0001: Independence and Representation clauses for atomic objects 2019-12-16 10:34:33 +00:00
sem_ch5.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch6.adb [Ada] Missing accessibility check on access discriminants 2019-12-18 07:16:22 +00:00
sem_ch6.ads [Ada] Reformat comments 2019-07-09 07:55:06 +00:00
sem_ch7.adb [Ada] Crash on inherited private operation in child package 2019-12-13 09:04:06 +00:00
sem_ch7.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch8.adb [Ada] Bad "already use-visible" warning re: use in private part 2019-12-18 07:14:07 +00:00
sem_ch8.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch9.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
sem_ch9.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch10.adb [Ada] Better error message for "is null" subunit 2019-12-16 10:34:03 +00:00
sem_ch10.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch11.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch11.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_ch12.adb [Ada] AI12-0282: shared variable control aspects on formal types 2019-12-18 07:14:54 +00:00
sem_ch12.ads [Ada] Small cleanup and improvement in inlining machinery 2019-08-13 08:08:11 +00:00
sem_ch13.adb [Ada] AI12-0282: shared variable control aspects on formal types 2019-12-18 07:14:54 +00:00
sem_ch13.ads [Ada] Code reorganization 2019-07-08 08:13:11 +00:00
sem_dim.adb [Ada] Avoid spurious errors on dimensionality checking in GNATprove 2019-08-13 08:06:55 +00:00
sem_dim.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_disp.adb [Ada] Minor reformattings 2019-08-20 09:50:14 +00:00
sem_disp.ads [Ada] Fix failing assertions on SPARK elaboration 2019-08-14 09:50:55 +00:00
sem_dist.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_dist.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_elab.adb [Ada] Fix repeated words and typos in doc and comments 2019-12-12 10:03:01 +00:00
sem_elab.ads [Ada] ABE checks v3.0, foundations of Elaboration order v4.0 2019-07-03 08:14:57 +00:00
sem_elim.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_elim.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_eval.adb [Ada] Document the introduction of the Object_Size attribute in Ada 2020 2019-12-18 07:14:18 +00:00
sem_eval.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
sem_intr.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_intr.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_mech.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_mech.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_prag.adb [Ada] AI12-0282: shared variable control aspects on formal types 2019-12-18 07:14:54 +00:00
sem_prag.ads [Ada] Warn about unknown condition in Compile_Time_Warning 2019-08-14 09:52:34 +00:00
sem_res.adb [Ada] Missing accessibility actuals on calls to interface conversion functions 2019-12-18 07:14:59 +00:00
sem_res.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_scil.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_scil.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_smem.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_smem.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_type.adb [Ada] Spurious error on universal access equality operator 2019-12-12 10:03:48 +00:00
sem_type.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem_util.adb [Ada] Fully propagate representation aspects through renaming 2019-12-16 10:34:27 +00:00
sem_util.ads [Ada] Fix three-letter typos like "sss" in comments and docs 2019-12-18 07:15:22 +00:00
sem_warn.adb [Ada] Spurious warning on call with out parameter in expression function 2019-10-10 15:25:13 +00:00
sem_warn.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sem.adb [Ada] Fix ineffective -gnatyN for separate compilation units 2019-09-17 08:02:46 +00:00
sem.ads [Ada] Minor: remove a ??? comment 2019-08-14 09:51:52 +00:00
set_targ.adb Remove svn:executable property from a couple of text files 2019-01-12 01:20:04 +01:00
set_targ.ads Remove svn:executable property from a couple of text files 2019-01-12 01:20:04 +01:00
sfn_scan.adb [Ada] Add an annotation for static analysis 2019-07-10 09:02:08 +00:00
sfn_scan.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sigtramp-armdroid.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sigtramp-ios.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sigtramp-qnx.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sigtramp-vxworks-target.inc [Ada] sigtramp-vxworks: Add a rule for sp (DWARF r31) on AArch64 2018-11-14 11:42:32 +00:00
sigtramp-vxworks.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sigtramp.h [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinfo-cn.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinfo-cn.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinfo.adb [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
sinfo.ads [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
sinput-c.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput-c.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput-d.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput-d.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput-l.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput-l.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sinput.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
snames.adb-tmpl
snames.ads-tmpl [Ada] Prototype implementastion of Ada2020 Map-reduce construct 2019-12-16 10:34:37 +00:00
snames.h-tmpl
socket.c [Ada] Fix warning on _REENTRANT 2019-12-16 10:35:00 +00:00
spark_xrefs.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
spark_xrefs.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sprint.adb [Ada] Small enhancement to the -gnatD/-gnatG output for fixed-point types 2019-07-22 13:58:04 +00:00
sprint.ads [Ada] Sprint: minor comment tweak 2019-08-12 08:59:23 +00:00
stand.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
stand.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
standard.ads.h * standard.ads.h: New file. 2019-05-08 11:57:15 +02:00
stringt.adb [Ada] Pragma Warning_As_Error works for style warnings 2019-08-20 09:48:51 +00:00
stringt.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
stringt.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
style.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
style.ads [Ada] Style check for mixed-case identifiers 2019-07-03 08:14:38 +00:00
styleg.adb [Ada] Minor reformatting 2019-07-03 08:14:43 +00:00
styleg.ads [Ada] Style check for mixed-case identifiers 2019-07-03 08:14:38 +00:00
stylesw.adb [Ada] Style check for mixed-case identifiers 2019-07-03 08:14:38 +00:00
stylesw.ads [Ada] Style check for mixed-case identifiers 2019-07-03 08:14:38 +00:00
switch-b.adb [Ada] Elaboration order v4.0 activation 2019-07-09 07:54:29 +00:00
switch-b.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
switch-c.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
switch-c.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
switch-m.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
switch-m.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
switch.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
switch.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
symbols.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
symbols.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
sysdep.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
table.adb [Ada] Strengthen Locked flag 2019-08-14 09:52:06 +00:00
table.ads [Ada] Strengthen Locked flag 2019-08-14 09:52:06 +00:00
targext.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
targparm.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
targparm.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
tb-gcc.c [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tbuild.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tbuild.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tempdir.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tempdir.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
terminals.c [Ada] Mention GNAT Studio instead of GPS 2019-10-10 15:23:19 +00:00
tracebak.c Makefile.rtl, [...]: Introduce a "STANDALONE" mode where C runtime files do not have any dependency... 2019-07-18 18:37:40 +02:00
tree_gen.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tree_gen.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tree_in.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tree_in.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tree_io.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
tree_io.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
treepr.adb [Ada] Debug procedure for printing ancestors 2019-10-10 15:24:06 +00:00
treepr.ads [Ada] Debug procedure for printing ancestors 2019-10-10 15:24:06 +00:00
treeprs.adt
ttypes.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
types.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
types.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
types.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
uintp.adb [Ada] Minor reformatting 2019-07-01 13:34:49 +00:00
uintp.ads [Ada] Minor reformatting 2019-07-01 13:34:49 +00:00
uintp.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
uname.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
uname.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
urealp.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
urealp.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
urealp.h [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
usage.adb [Ada] Warning needed on anonymous access type allocators 2019-07-09 07:55:22 +00:00
usage.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
validsw.adb [Ada] Clean up support for validity checks in the compiler 2019-07-04 08:07:19 +00:00
validsw.ads [Ada] Clean up support for validity checks in the compiler 2019-07-04 08:07:19 +00:00
vx_stack_info.c
vxworks-arm-link.spec
vxworks-e500-link.spec
vxworks-ppc-link.spec
vxworks-smp-arm-link.spec
vxworks-smp-e500-link.spec
vxworks-smp-ppc-link.spec
vxworks-smp-x86-link.spec
vxworks-x86-link.spec
warnsw.adb [Ada] Warning for out-of-order record representation clauses 2019-08-20 09:49:02 +00:00
warnsw.ads [Ada] Mark Ada subprograms and variables referenced from gigi 2019-12-12 10:01:46 +00:00
widechar.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
widechar.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xeinfo.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xnmake.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xoscons.adb [Ada] GNAT.Serial_Communications: simplify the Serial_Port structure 2019-07-08 08:14:59 +00:00
xr_tabls.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xr_tabls.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xref_lib.adb [Ada] gnatxref: infinite loop on symbols not found 2019-09-19 08:12:47 +00:00
xref_lib.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xsinfo.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xsnamest.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xtreeprs.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xutil.adb [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00
xutil.ads [Ada] Bump copyright years to 2019 2019-01-08 09:54:04 +00:00