From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x42e.google.com (mail-wr1-x42e.google.com [IPv6:2a00:1450:4864:20::42e]) by sourceware.org (Postfix) with ESMTPS id BDF1F388451B for ; Wed, 11 May 2022 08:54:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BDF1F388451B Received: by mail-wr1-x42e.google.com with SMTP id v12so1927402wrv.10 for ; Wed, 11 May 2022 01:54:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-disposition; bh=gS1PUJ+h3baQ19S93GmftMl+FHcMJLZUPuhQQK1fR40=; b=OtKsaotwRRHUrsXQd6rb7xKMJalO5qm7THgEhe72TxwTEzcGWGZScR2bvaHMLIMYPY uk/A2t8mtXULlQC9rYcnbdZuz2eACYCs/Wo2gZWbdiiYw7LQbwEgrLa0ROfUdkgHnaxw 7jYBzQAWKprsjllVNK29snp7zRJh/fN0mRwazse041qDqqqCPSMVwnYmEXEaUgEx3An4 Ni9FVfWNah/1C0OJ7JKF5YnN1z7v0lw6YHN0cDNREJpxd+R43x+gJMN1uJ4pvmUrbP7K vQtWAAXmOyCwXkepia7En/g+NiM4TJuGOR56rUPfxSPcRvW5gleH8YQucHJK9r3d0smv 61mA== X-Gm-Message-State: AOAM533HefzCyADP0w2edVdpHoBHeKU/ftgRpwAqK5tp33qVu2TQ1smj DH1j8zGwemGkdfR8UVxmNBgJaIXnrvefeA== X-Google-Smtp-Source: ABdhPJyeu46LOlZTJVjv6FOheWG3MCJC527NtQ05ztYDkE0lDRox6DqJVBOynO1pSUVHsIHiu3qCag== X-Received: by 2002:a5d:4dcc:0:b0:20a:ddaa:1c30 with SMTP id f12-20020a5d4dcc000000b0020addaa1c30mr20754935wru.419.1652259277310; Wed, 11 May 2022 01:54:37 -0700 (PDT) Received: from adacore.com ([45.147.211.82]) by smtp.gmail.com with ESMTPSA id q3-20020adff783000000b0020cdcb0efa2sm624566wrp.34.2022.05.11.01.54.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 11 May 2022 01:54:36 -0700 (PDT) Date: Wed, 11 May 2022 08:54:36 +0000 From: Pierre-Marie de Rodat To: gcc-patches@gcc.gnu.org Cc: Piotr Trojanek Subject: [Ada] Fix "S p e c" and "B o d y" file headers Message-ID: <20220511085436.GA2166974@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline X-Spam-Status: No, score=-13.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GAPPY_SUBJECT, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 May 2022 08:54:39 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Fix Spec/Body headers in .adb/.ads files, respectively; all violations detected with grep and manually filtered because of .tmpl files. Tested on x86_64-pc-linux-gnu, committed on trunk gcc/ada/ * exp_atag.adb, lib-util.ads, libgnat/g-decstr.adb, libgnat/g-exptty.adb, libgnat/g-socpol.adb, libgnat/s-strhas.adb: Fix headers. --cWoXeonUoKmBZSoM Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="patch.diff" diff --git a/gcc/ada/exp_atag.adb b/gcc/ada/exp_atag.adb --- a/gcc/ada/exp_atag.adb +++ b/gcc/ada/exp_atag.adb @@ -4,7 +4,7 @@ -- -- -- E X P _ A T A G -- -- -- --- S p e c -- +-- B o d y -- -- -- -- Copyright (C) 2006-2022, Free Software Foundation, Inc. -- -- -- diff --git a/gcc/ada/lib-util.ads b/gcc/ada/lib-util.ads --- a/gcc/ada/lib-util.ads +++ b/gcc/ada/lib-util.ads @@ -4,7 +4,7 @@ -- -- -- L I B . U T I L -- -- -- --- B o d y -- +-- S p e c -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- diff --git a/gcc/ada/libgnat/g-decstr.adb b/gcc/ada/libgnat/g-decstr.adb --- a/gcc/ada/libgnat/g-decstr.adb +++ b/gcc/ada/libgnat/g-decstr.adb @@ -4,7 +4,7 @@ -- -- -- G N A T . D E C O D E _ S T R I N G -- -- -- --- S p e c -- +-- B o d y -- -- -- -- Copyright (C) 2007-2022, AdaCore -- -- -- diff --git a/gcc/ada/libgnat/g-exptty.adb b/gcc/ada/libgnat/g-exptty.adb --- a/gcc/ada/libgnat/g-exptty.adb +++ b/gcc/ada/libgnat/g-exptty.adb @@ -4,7 +4,7 @@ -- -- -- G N A T . E X P E C T . T T Y -- -- -- --- S p e c -- +-- B o d y -- -- -- -- Copyright (C) 2000-2022, AdaCore -- -- -- diff --git a/gcc/ada/libgnat/g-socpol.adb b/gcc/ada/libgnat/g-socpol.adb --- a/gcc/ada/libgnat/g-socpol.adb +++ b/gcc/ada/libgnat/g-socpol.adb @@ -4,7 +4,7 @@ -- -- -- G N A T . S O C K E T S . P O L L -- -- -- --- S p e c -- +-- B o d y -- -- -- -- Copyright (C) 2020-2022, AdaCore -- -- -- diff --git a/gcc/ada/libgnat/s-strhas.adb b/gcc/ada/libgnat/s-strhas.adb --- a/gcc/ada/libgnat/s-strhas.adb +++ b/gcc/ada/libgnat/s-strhas.adb @@ -4,7 +4,7 @@ -- -- -- S Y S T E M . S T R I N G _ H A S H -- -- -- --- S p e c -- +-- B o d y -- -- -- -- Copyright (C) 2009-2022, Free Software Foundation, Inc. -- -- -- --cWoXeonUoKmBZSoM--