diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-10 10:01:57 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-10 10:01:57 +0000 |
commit | 90a07d4c781688cf52abd70c1097b11b651a6702 (patch) | |
tree | 6719a6bc87fb9426192a2ee4239fcbe3d1a71fde /gcc/ada/checks.adb | |
parent | ae35d473dcba37da6805652727c83a7f7699eae6 (diff) | |
download | gcc-90a07d4c781688cf52abd70c1097b11b651a6702.tar.gz |
2010-09-10 Ed Schonberg <schonberg@adacore.com>
* sem_ch3.adb (Derive_Subprograms): An interface primitive operation
that is a renaming must be derived like any other primitive operation,
the renamed operation is not relevant to the derivation.
2010-09-10 Robert Dewar <dewar@adacore.com>
* sem_aux.ads: Add comment for Is_Inherently_Limited_Type.
* checks.adb: Minor reformatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164155 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/checks.adb')
-rw-r--r-- | gcc/ada/checks.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/checks.adb b/gcc/ada/checks.adb index 9b10f126256..7448168566c 100644 --- a/gcc/ada/checks.adb +++ b/gcc/ada/checks.adb @@ -4108,9 +4108,9 @@ package body Checks is end if; end if; - -- If this is a boolean expression, only its elementary consituents - -- need checking: if they are valid, a boolean or short-circuit - -- operation with them will be valid as well. + -- If this is a boolean expression, only its elementary consituents need + -- checking: if they are valid, a boolean or short-circuit operation + -- with them will be valid as well. if Base_Type (Typ) = Standard_Boolean and then |