diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-09 10:36:42 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-09 10:36:42 +0000 |
commit | e4c87fa54e168be9cdbb50057992277b6984ea12 (patch) | |
tree | d2e9bd8a5faa86e9021f0ad569650516d8108c88 /gcc/ada/lib-writ.ads | |
parent | 5ab7f2859836f90a6b9ff0816bfdda210b97ecc7 (diff) | |
download | gcc-e4c87fa54e168be9cdbb50057992277b6984ea12.tar.gz |
2012-07-09 Vincent Celier <celier@adacore.com>
* lib-writ.ads: Add documentation for the Z lines (implicitly
withed units) and Y lines (limited withed units).
2012-07-09 Robert Dewar <dewar@adacore.com>
* lib.ads, exp_attr.adb, exp_ch9.adb, sem_dim.adb, sem_ch9.adb,
sem_prag.adb, sem_ch12.adb, mlib-utl.adb, freeze.adb, sem_res.adb,
sem_attr.adb, sem_case.adb, gnatlink.adb, exp_ch4.adb, sem_ch6.adb,
sem_elim.adb, s-dimmks.ads, sem_ch13.adb: Minor code clean ups.
2012-07-09 Eric Botcazou <ebotcazou@adacore.com>
* gnat_ugn.texi (Switches for gcc): Document -gnatn[12] only
lightly in the summary and more thoroughly in inlining section.
(Performance Considerations): Document -gnatn[12] in inlining
section.
2012-07-09 Tristan Gingold <gingold@adacore.com>
* a-exexpr-gcc.adb (Unhandled_Except_Handler): New procedure.
(Unhandled_Others_Value): New const.
* raise-gcc.c (GNAT_UNHANDLED_OTHERS): Define.
(action_descriptor): Remove ttype_entry.
(get_action_description_for): Do not assign ttype_entry.
(is_handled_by): Consider GNAT_UNHANDLED_OTHERS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189367 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/lib-writ.ads')
-rw-r--r-- | gcc/ada/lib-writ.ads | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/gcc/ada/lib-writ.ads b/gcc/ada/lib-writ.ads index d7bea5ea2c4..204ba3a3572 100644 --- a/gcc/ada/lib-writ.ads +++ b/gcc/ada/lib-writ.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2012, 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- -- @@ -517,18 +517,25 @@ package Lib.Writ is -- -- The attributes may appear in any order, separated by spaces. - -- --------------------- - -- -- W Withed Units -- - -- --------------------- + -- ----------------------------- + -- -- W, Y and Z Withed Units -- + -- ----------------------------- -- Following each U line, is a series of lines of the form -- W unit-name [source-name lib-name] [E] [EA] [ED] [AD] - -- - -- One of these lines is present for each unit that is mentioned in an - -- explicit with clause by the current unit. The first parameter is the - -- unit name in internal format. The second parameter is the file name - -- of the file that must be compiled to compile this unit. It is + -- or + -- Y unit-name [source-name lib-name] [E] [EA] [ED] [AD] + -- or + -- Z unit-name [source-name lib-name] [E] [EA] [ED] [AD] + -- + -- One W line is present for each unit that is mentioned in an explicit + -- non-limited with clause by the current unit. One Y line is present + -- for each unit that is mentioned in an explicit limited with clause + -- by the current unit. One Z line is present for each unit that is + -- only implicitly withed by the current unit. The first parameter is + -- the unit name in internal format. The second parameter is the file + -- name of the file that must be compiled to compile this unit. It is -- usually the file for the body, except for packages which have no -- body. For units that need a body, if the source file for the body -- cannot be found, the file name of the spec is used instead. The @@ -555,8 +562,6 @@ package Lib.Writ is -- generic unit compiled with earlier versions of GNAT which did not -- generate object or ali files for generics. - -- In fact W lines include implicit withs ??? - -- ----------------------- -- -- L Linker_Options -- -- ----------------------- |