aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/restrict.adb
diff options
context:
space:
mode:
authorHristian Kirtchev <kirtchev@adacore.com>2016-10-12 12:59:57 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2016-10-12 14:59:57 +0200
commitf31dcd99acf739592481156f18e58a2e394d5713 (patch)
tree66b3c8da41b4d8e552e8f7f4d301b3957ae54c54 /gcc/ada/restrict.adb
parent0026dd0a639f02445d2019be7873a17313af0c16 (diff)
downloadgcc-f31dcd99acf739592481156f18e58a2e394d5713.zip
gcc-f31dcd99acf739592481156f18e58a2e394d5713.tar.gz
gcc-f31dcd99acf739592481156f18e58a2e394d5713.tar.bz2
exp_ch5.adb, [...]: Minor reformatting.
2016-10-12 Hristian Kirtchev <kirtchev@adacore.com> * exp_ch5.adb, sem_ch3.adb, exp_ch9.adb, a-tags.adb, sem_prag.adb, sem_ch12.adb, xref_lib.adb, a-strunb-shared.adb, rtsfind.adb, freeze.adb, sem_attr.adb, sem_case.adb, exp_ch4.adb, ghost.adb, exp_ch6.adb, sem_ch4.adb, restrict.adb, s-os_lib.adb: Minor reformatting. From-SVN: r241041
Diffstat (limited to 'gcc/ada/restrict.adb')
-rw-r--r--gcc/ada/restrict.adb12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ada/restrict.adb b/gcc/ada/restrict.adb
index 9d22f85..a66fffb 100644
--- a/gcc/ada/restrict.adb
+++ b/gcc/ada/restrict.adb
@@ -1195,17 +1195,17 @@ package body Restrict is
declare
R : Restriction_Flags renames
- Profile_Info (Restricted_Tasking).Set;
+ Profile_Info (Restricted_Tasking).Set;
V : Restriction_Values renames
- Profile_Info (Restricted_Tasking).Value;
+ Profile_Info (Restricted_Tasking).Value;
begin
for J in R'Range loop
if R (J)
and then (Restrictions.Set (J) = False
- or else Restriction_Warnings (J)
- or else
- (J in All_Parameter_Restrictions
- and then Restrictions.Value (J) > V (J)))
+ or else Restriction_Warnings (J)
+ or else
+ (J in All_Parameter_Restrictions
+ and then Restrictions.Value (J) > V (J)))
then
Restricted_Profile_Result := False;
exit;