[Ada] Small cleanup of osint-m.adb

gcc/ada/

	* osint-m.adb: Remove with_clause and pragma.
This commit is contained in:
Bob Duff 2021-12-10 13:21:38 -05:00 committed by Pierre-Marie de Rodat
parent e7a7dbb5ca
commit 9ceb18d4a2

View File

@ -23,17 +23,6 @@
-- --
------------------------------------------------------------------------------
with Osint;
pragma Elaborate_All (Osint);
-- This pragma is needed because of the call to Set_Program in the
-- elaboration of the package. We cannot rely on the static model
-- of elaboration since the compiler is routinely compiled with
-- checks off (-gnatp), and with older versions of the compiler
-- (up to and including most 5.04 wavefronts), -gnatp suppresses
-- the static elaboration check mechanisms. It could be removed
-- one day, but there really is no need to do so.
package body Osint.M is
-----------------------