diff options
author | Hristian Kirtchev <kirtchev@adacore.com> | 2019-07-01 13:37:42 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2019-07-01 13:37:42 +0000 |
commit | 6578a6bfec1ae4a6a077055ebf0024e0079b80f7 (patch) | |
tree | dc63a53ef62bc739531f2bda3e3bfad239700e4e /gcc/ada/sem_ch4.adb | |
parent | 7029d96f5a2e98500707ca9110e5ca569e062d13 (diff) | |
download | gcc-6578a6bfec1ae4a6a077055ebf0024e0079b80f7.zip gcc-6578a6bfec1ae4a6a077055ebf0024e0079b80f7.tar.gz gcc-6578a6bfec1ae4a6a077055ebf0024e0079b80f7.tar.bz2 |
[Ada] Minor reformatting
2019-07-01 Hristian Kirtchev <kirtchev@adacore.com>
gcc/ada/
* checks.adb, exp_ch9.adb, exp_unst.adb, sem_ch4.adb,
sem_prag.adb, sem_spark.adb: Minor reformatting.
From-SVN: r272882
Diffstat (limited to 'gcc/ada/sem_ch4.adb')
-rw-r--r-- | gcc/ada/sem_ch4.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/sem_ch4.adb b/gcc/ada/sem_ch4.adb index 03a156a..3328f96 100644 --- a/gcc/ada/sem_ch4.adb +++ b/gcc/ada/sem_ch4.adb @@ -7402,15 +7402,15 @@ package body Sem_Ch4 is and then Is_Fixed_Point_Type (Etype (L)) and then Is_Integer_Type (Etype (R)) then - Error_Msg_N ("\convert right operand to " - & "`Integer`", N); + Error_Msg_N + ("\convert right operand to `Integer`", N); elsif Nkind (N) = N_Op_Multiply and then Is_Fixed_Point_Type (Etype (R)) and then Is_Integer_Type (Etype (L)) then - Error_Msg_N ("\convert left operand to " - & "`Integer`", N); + Error_Msg_N + ("\convert left operand to `Integer`", N); end if; -- For concatenation operators it is more difficult to |