diff options
Diffstat (limited to 'gcc/ada/eval_fat.adb')
-rw-r--r-- | gcc/ada/eval_fat.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/eval_fat.adb b/gcc/ada/eval_fat.adb index bb729f9e0b9..7217048c54e 100644 --- a/gcc/ada/eval_fat.adb +++ b/gcc/ada/eval_fat.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2013, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -508,12 +508,12 @@ package body Eval_Fat is if X_Exp < Emin_Den or not Has_Denormals (RT) then if Has_Signed_Zeros (RT) and then UR_Is_Negative (X) then Error_Msg_N - ("floating-point value underflows to -0.0?", Enode); + ("floating-point value underflows to -0.0??", Enode); return Ureal_M_0; else Error_Msg_N - ("floating-point value underflows to 0.0?", Enode); + ("floating-point value underflows to 0.0??", Enode); return Ureal_0; end if; @@ -545,7 +545,7 @@ package body Eval_Fat is begin if X_Frac_Denorm /= X_Frac then Error_Msg_N - ("gradual underflow causes loss of precision?", + ("gradual underflow causes loss of precision??", Enode); X_Frac := X_Frac_Denorm; end if; |