aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Trojanek <trojanek@adacore.com>2022-09-09 17:46:22 +0200
committerMarc Poulhiès <poulhies@adacore.com>2022-11-07 09:36:30 +0100
commitf8b69d43875557a42feef5f595ec9f3a31e09317 (patch)
tree007851527ca7abf5b6fc644dc2326cec44fce8cb
parentc7e9b5e2d5c7b0e57b127d5c6bb57d3b5bfb6ce1 (diff)
downloadgcc-f8b69d43875557a42feef5f595ec9f3a31e09317.zip
gcc-f8b69d43875557a42feef5f595ec9f3a31e09317.tar.gz
gcc-f8b69d43875557a42feef5f595ec9f3a31e09317.tar.bz2
ada: Cleanup WITH clauses after switching from obsolescent Ada 83 unit
Cleanup after replacing Unchecked_Conversion with Ada.Unchecked_Conversion. gcc/ada/ * libgnarl/s-interr.adb: Reorder context items and pragmas.
-rw-r--r--gcc/ada/libgnarl/s-interr.adb17
1 files changed, 6 insertions, 11 deletions
diff --git a/gcc/ada/libgnarl/s-interr.adb b/gcc/ada/libgnarl/s-interr.adb
index a3d28d6..94e572d 100644
--- a/gcc/ada/libgnarl/s-interr.adb
+++ b/gcc/ada/libgnarl/s-interr.adb
@@ -54,27 +54,22 @@
with Ada.Exceptions;
with Ada.Task_Identification;
+with Ada.Unchecked_Conversion;
-with System.Task_Primitives;
with System.Interrupt_Management;
-
with System.Interrupt_Management.Operations;
-pragma Elaborate_All (System.Interrupt_Management.Operations);
-
with System.IO;
-
+with System.Parameters;
+with System.Task_Primitives;
with System.Task_Primitives.Operations;
with System.Task_Primitives.Interrupt_Operations;
with System.Storage_Elements;
+with System.Tasking.Initialization;
with System.Tasking.Utilities;
-
with System.Tasking.Rendezvous;
-pragma Elaborate_All (System.Tasking.Rendezvous);
-
-with System.Tasking.Initialization;
-with System.Parameters;
-with Ada.Unchecked_Conversion;
+pragma Elaborate_All (System.Interrupt_Management.Operations);
+pragma Elaborate_All (System.Tasking.Rendezvous);
package body System.Interrupts is