Commit d7925fd3 by Arnaud Charlet Committed by Pierre-Marie de Rodat

[Ada] System.Object_Reader: minor code clean-up

2018-07-16  Arnaud Charlet  <charlet@adacore.com>

gcc/ada/

	* libgnat/s-objrea.ads: Minor code clean up.

From-SVN: r262711
parent 94b10561
2018-07-16 Arnaud Charlet <charlet@adacore.com>
* libgnat/s-objrea.ads: Minor code clean up.
2018-07-16 Piotr Trojanek <trojanek@adacore.com> 2018-07-16 Piotr Trojanek <trojanek@adacore.com>
* sem_ch3.adb (Process_Discriminants): Adjust reference to the SPARM RM * sem_ch3.adb (Process_Discriminants): Adjust reference to the SPARM RM
......
...@@ -43,14 +43,6 @@ package System.Object_Reader is ...@@ -43,14 +43,6 @@ package System.Object_Reader is
BUFFER_SIZE : constant := 8 * 1024; BUFFER_SIZE : constant := 8 * 1024;
------------------
-- Object files --
------------------
type Object_File (<>) is private;
type Object_File_Access is access Object_File;
--------------------- ---------------------
-- Object sections -- -- Object sections --
---------------------- ----------------------
...@@ -88,6 +80,14 @@ package System.Object_Reader is ...@@ -88,6 +80,14 @@ package System.Object_Reader is
-- PECOFF | PECOFF_PLUS appears so often as a case choice, would -- PECOFF | PECOFF_PLUS appears so often as a case choice, would
-- seem a good idea to have a subtype name covering these two choices ??? -- seem a good idea to have a subtype name covering these two choices ???
------------------
-- Object files --
------------------
type Object_File (Format : Object_Format) is private;
type Object_File_Access is access Object_File;
------------------------------ ------------------------------
-- Object architecture type -- -- Object architecture type --
------------------------------ ------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment