aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/urealp.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2013-04-11 14:53:52 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2013-04-11 14:53:52 +0200
commite7f11067a1011e49909905be0ea421c4fc8dd1cc (patch)
treea26ebfc6e4caf0177dd7ef55f130557b48b5a867 /gcc/ada/urealp.ads
parente03c52533a83e71475c4975ade1fc5ae96b4be53 (diff)
downloadgcc-e7f11067a1011e49909905be0ea421c4fc8dd1cc.zip
gcc-e7f11067a1011e49909905be0ea421c4fc8dd1cc.tar.gz
gcc-e7f11067a1011e49909905be0ea421c4fc8dd1cc.tar.bz2
[multiple changes]
2013-04-11 Johannes Kanig <kanig@adacore.com> * debug.adb: Document usage of -gnatd.Q switch. 2013-04-11 Matthew Heaney <heaney@adacore.com> * a-crbtgk.adb (Ceiling, Find, Floor): Adjust locks before element comparisons. (Generic_Conditional_Insert, Generic_Conditional_Insert_With_Hint): Ditto. * a-crbtgo.adb, a-rbtgbo.adb (Generic_Equal): Adjust locks before element comparisons. * a-rbtgso.adb (Difference, Intersection): Adjust locks before element comparisons. (Is_Subset, Overlap): Ditto (Symmetric_Difference, Union): Ditto * a-btgbso.adb (Set_Difference, Set_Intersection): Adjust locks before element comparisons. (Set_Subset, Set_Overlap): Ditto (Set_Symmetric_Difference, Set_Union): Ditto * a-coorse.adb, a-ciorse.adb, a-cborse.adb (Update_Element_Preserving_Key): Adjust locks before element comparisons (Replace_Element): Ditto 2013-04-11 Pascal Obry <obry@adacore.com> * prj-attr.adb, projects.texi, snames.ads-tmpl: Remove Build_Slaves attribute. 2013-04-11 Ed Schonberg <schonberg@adacore.com> * exp_ch3.adb (Build_Equivalent_Aggregate): Subsidiary of Expand_N_Object_Declaration, used to construct an aggregate with static components whenever possible, so that objects of a discriminated type can be initialized without calling the init. proc for the type. 2013-04-11 Vincent Celier <celier@adacore.com> * prj-makr.adb (Process_Directory): On VMS, always delete, then recreate the temporary file with Create_Output_Text_File, otherwise the output redirection does not work properly. 2013-04-11 Eric Botcazou <ebotcazou@adacore.com> * urealp.ads: Fix minor typo. 2013-04-11 Fabien Chouteau <chouteau@adacore.com> * cio.c (mktemp): Don't use tmpnam function from the system on VxWorks in kernel mode. From-SVN: r197784
Diffstat (limited to 'gcc/ada/urealp.ads')
-rw-r--r--gcc/ada/urealp.ads6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/urealp.ads b/gcc/ada/urealp.ads
index 54fe8ff..d9d63ea 100644
--- a/gcc/ada/urealp.ads
+++ b/gcc/ada/urealp.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2013, 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- --
@@ -46,7 +46,7 @@ package Urealp is
-- use the UR_Eq function).
-- A Ureal value represents an arbitrary precision universal real value,
- -- stored internally using four components
+ -- stored internally using four components:
-- the numerator (Uint, always non-negative)
-- the denominator (Uint, always non-zero, always positive if base = 0)
@@ -125,7 +125,7 @@ package Urealp is
-- Returns value 10.0 ** 36
function Ureal_M_10_36 return Ureal;
- -- Returns value -(10.0
+ -- Returns value -10.0 ** 36
-----------------
-- Subprograms --