From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7871) id C66363858C1F; Mon, 7 Nov 2022 08:38:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C66363858C1F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667810311; bh=/51jEZb11ZfuKr6IW4te6B3GJ7PXaMWw7lxKDU1JT5k=; h=From:To:Subject:Date:From; b=d1rsIgah1AWGMLXDtyEZ6uWDFZoKG9PpeaLoBvXWnK8sjgyoIcDVvceY6Jg0fTcmg zTIWPfz52pZ7eSW9sHsJ0n8gz6+bBGPKiea8m3guaQ07zY/fm8Mf22jGUdbUSbmM53 jn/hyewhbgClpN+otSnNebxMGymMjHshywJcMp6U= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Marc Poulhi?s To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3724] ada: Tune layout after switching to Ada 2022 aggregate syntax X-Act-Checkin: gcc X-Git-Author: Piotr Trojanek X-Git-Refname: refs/heads/master X-Git-Oldrev: f8b69d43875557a42feef5f595ec9f3a31e09317 X-Git-Newrev: ae3952715ce92cb6baac6d2b883c9a29a70cb1d9 Message-Id: <20221107083831.C66363858C1F@sourceware.org> Date: Mon, 7 Nov 2022 08:38:31 +0000 (GMT) List-Id: https://gcc.gnu.org/g:ae3952715ce92cb6baac6d2b883c9a29a70cb1d9 commit r13-3724-gae3952715ce92cb6baac6d2b883c9a29a70cb1d9 Author: Piotr Trojanek Date: Fri Sep 9 17:48:45 2022 +0200 ada: Tune layout after switching to Ada 2022 aggregate syntax Whitespace cleanup only. gcc/ada/ * libgnarl/s-interr.adb: Tune whitespace. Diff: --- gcc/ada/libgnarl/s-interr.adb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gcc/ada/libgnarl/s-interr.adb b/gcc/ada/libgnarl/s-interr.adb index 94e572d482b..2fbb1406936 100644 --- a/gcc/ada/libgnarl/s-interr.adb +++ b/gcc/ada/libgnarl/s-interr.adb @@ -109,8 +109,8 @@ package body System.Interrupts is Static : Boolean); entry Detach_Handler - (Interrupt : Interrupt_ID; - Static : Boolean); + (Interrupt : Interrupt_ID; + Static : Boolean); entry Bind_Interrupt_To_Entry (T : Task_Id; @@ -174,15 +174,14 @@ package body System.Interrupts is pragma Atomic_Components (Ignored); -- True iff the corresponding interrupt is blocked in the process level - Last_Unblocker : - array (Interrupt_ID'Range) of Task_Id := [others => Null_Task]; + Last_Unblocker : array (Interrupt_ID'Range) of Task_Id := + [others => Null_Task]; pragma Atomic_Components (Last_Unblocker); -- Holds the ID of the last Task which Unblocked this Interrupt. It -- contains Null_Task if no tasks have ever requested the Unblocking -- operation or the Interrupt is currently Blocked. - Server_ID : array (Interrupt_ID'Range) of Task_Id := - [others => Null_Task]; + Server_ID : array (Interrupt_ID'Range) of Task_Id := [others => Null_Task]; pragma Atomic_Components (Server_ID); -- Holds the Task_Id of the Server_Task for each interrupt. Task_Id is -- needed to accomplish locking per Interrupt base. Also is needed to