diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-05-29 10:55:35 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-05-29 10:55:35 +0200 |
commit | 8682d22c802ff44bdb2c152da7aff7e2be6a67fe (patch) | |
tree | 8ddd527a508f982771b12d695f3930c395f57fb1 /gcc | |
parent | fff3f472d5a071becd3f4d3637ca7f8902a451e0 (diff) | |
download | gcc-8682d22c802ff44bdb2c152da7aff7e2be6a67fe.zip gcc-8682d22c802ff44bdb2c152da7aff7e2be6a67fe.tar.gz gcc-8682d22c802ff44bdb2c152da7aff7e2be6a67fe.tar.bz2 |
* sem_eval.adb: Minor reformatting
From-SVN: r136147
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/sem_eval.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/sem_eval.adb b/gcc/ada/sem_eval.adb index e9bbd7b..d806791 100644 --- a/gcc/ada/sem_eval.adb +++ b/gcc/ada/sem_eval.adb @@ -629,7 +629,7 @@ package body Sem_Eval is then return True; - -- True if the same binary operator applied to the same operand + -- True if the same binary operator applied to the same operands elsif Nkind (Lf) in N_Binary_Op and then Is_Same_Value (Left_Opnd (Lf), Left_Opnd (Rf)) @@ -637,7 +637,7 @@ package body Sem_Eval is then return True; - -- All other cases, we can't tell, so False + -- All other cases, we can't tell, so return False else return False; |