diff options
author | Bob Duff <duff@adacore.com> | 2018-01-11 08:53:27 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2018-01-11 08:53:27 +0000 |
commit | 8207dc2311d761ddff0de5d0a2e8a72dc4e94e78 (patch) | |
tree | 4d13a7bf55f96da66623be0b4fd18f03959f32f4 /gcc/ada/cstreams.c | |
parent | 52c5090a4f940459ac3e38bcee0fd9f5f86a4eff (diff) | |
download | gcc-8207dc2311d761ddff0de5d0a2e8a72dc4e94e78.zip gcc-8207dc2311d761ddff0de5d0a2e8a72dc4e94e78.tar.gz gcc-8207dc2311d761ddff0de5d0a2e8a72dc4e94e78.tar.bz2 |
[Ada] gnatbind -f switch gives an error for duplicates
If the -felab-order.txt switch is given to gnatbind, and there are duplicate
unit names in elab-order.txt, an error will be given.
The following test should get errors:
this (spec) <-- that (body)
error: elab-order.txt:5: duplicate unit name "this (spec)" from line 1
error: elab-order.txt:7: duplicate unit name "that (body)" from line 3
gnatmake: *** bind failed.
Content of elab-order.txt (7 lines):
this%s
that%b
this (spec)
that%b
gnatmake -q -f -g -O0 -gnata that-main.adb -bargs -felab-order.txt
package body That is
end That;
package That is
pragma Elaborate_Body;
end That;
with This, That;
procedure That.Main is
begin
null;
end That.Main;
package body This is
end This;
package This is
pragma Elaborate_Body;
end This;
2018-01-11 Bob Duff <duff@adacore.com>
gcc/ada/
* binde.adb (Force_Elab_Order): Give an error if there are duplicate
unit names.
From-SVN: r256508
Diffstat (limited to 'gcc/ada/cstreams.c')
0 files changed, 0 insertions, 0 deletions