diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2020-03-14 22:48:40 +0100 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:12:04 -0300 |
commit | 6358217f5433fc5f335486e9e07e8c21ccffd0d5 (patch) | |
tree | 15f1d07357c53dbce43a5f0ad08c997372106182 | |
parent | 70e198ec530e3ae7cf2e3c1002d73b87b22833f0 (diff) | |
download | gcc-6358217f5433fc5f335486e9e07e8c21ccffd0d5.zip gcc-6358217f5433fc5f335486e9e07e8c21ccffd0d5.tar.gz gcc-6358217f5433fc5f335486e9e07e8c21ccffd0d5.tar.bz2 |
[Ada] Fix punctuation in comment of Building_Static_Dispatch_Tables
2020-06-11 Piotr Trojanek <trojanek@adacore.com>
gcc/ada/
* opt.ads (Building_Static_Dispatch_Tables): Fix punctuation in
comment.
-rw-r--r-- | gcc/ada/opt.ads | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ada/opt.ads b/gcc/ada/opt.ads index b08df8d..b25266a 100644 --- a/gcc/ada/opt.ads +++ b/gcc/ada/opt.ads @@ -2161,12 +2161,12 @@ package Opt is -- allocated dispatch tables. If it is True, then the front end will -- generate static aggregates for dispatch tables that contain forward -- references to addresses of subprograms not seen yet, and the back end - -- must be prepared to handle this case. If it is False, then the front - -- end generates assignments to initialize the dispatch table, and there - -- are no such forward references. By default we build statically allocated - -- dispatch tables for all library level tagged types in all platforms.This - -- behavior can be disabled using switch -gnatd.t which will set this flag - -- to False and revert to the previous dynamic behavior. + -- must be prepared to handle this case. If it is False, then the front end + -- generates assignments to initialize the dispatch table, and there are + -- no such forward references. By default we build statically allocated + -- dispatch tables for all library-level tagged types in all platforms. + -- This behavior can be disabled using switch -gnatd.t which will set + -- this flag to False and revert to the previous dynamic behavior. Expander_Active : Boolean := False; -- A flag that indicates if expansion is active (True) or deactivated |