aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ada/libgnat/a-tifiio.adb48
-rw-r--r--gcc/ada/libgnat/a-tifiio__128.adb72
-rw-r--r--gcc/ada/libgnat/a-wtfiio.adb48
-rw-r--r--gcc/ada/libgnat/a-wtfiio__128.adb72
-rw-r--r--gcc/ada/libgnat/a-ztfiio.adb48
-rw-r--r--gcc/ada/libgnat/a-ztfiio__128.adb72
6 files changed, 210 insertions, 150 deletions
diff --git a/gcc/ada/libgnat/a-tifiio.adb b/gcc/ada/libgnat/a-tifiio.adb
index 7358d12..e464218 100644
--- a/gcc/ada/libgnat/a-tifiio.adb
+++ b/gcc/ada/libgnat/a-tifiio.adb
@@ -191,51 +191,59 @@ package body Ada.Text_IO.Fixed_IO with SPARK_Mode => Off is
OK_Get_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator <= 2**27
- and then Num'Small_Denominator <= 2**27));
+ (Num'Base'Small_Numerator <= 2**27
+ and then Num'Base'Small_Denominator <= 2**27));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**27)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**27)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**25));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**25));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator <= 2**59
- and then Num'Small_Denominator <= 2**59));
+ (Num'Base'Small_Numerator <= 2**59
+ and then Num'Base'Small_Denominator <= 2**59));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**59)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**59)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**53));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**53));
-- These conditions are derived from the prerequisites of System.Image_F
E : constant Natural := 63 - 32 * Boolean'Pos (OK_Put_32);
diff --git a/gcc/ada/libgnat/a-tifiio__128.adb b/gcc/ada/libgnat/a-tifiio__128.adb
index 59ce81c..57ddfbc 100644
--- a/gcc/ada/libgnat/a-tifiio__128.adb
+++ b/gcc/ada/libgnat/a-tifiio__128.adb
@@ -198,76 +198,88 @@ package body Ada.Text_IO.Fixed_IO with SPARK_Mode => Off is
OK_Get_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator <= 2**27
- and then Num'Small_Denominator <= 2**27));
+ (Num'Base'Small_Numerator <= 2**27
+ and then Num'Base'Small_Denominator <= 2**27));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**27)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**27)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**25));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**25));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator <= 2**59
- and then Num'Small_Denominator <= 2**59));
+ (Num'Base'Small_Numerator <= 2**59
+ and then Num'Base'Small_Denominator <= 2**59));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**59)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**59)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**53));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**53));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_128 : constant Boolean :=
Num'Base'Object_Size <= 128
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**127)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**127)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**127)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**127)
or else
- (Num'Small_Numerator <= 2**123
- and then Num'Small_Denominator <= 2**123));
+ (Num'Base'Small_Numerator <= 2**123
+ and then Num'Base'Small_Denominator <= 2**123));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_128 : constant Boolean :=
Num'Base'Object_Size <= 128
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**127)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**127)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**127)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**127)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**123)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**123)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**122));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**122));
-- These conditions are derived from the prerequisites of System.Image_F
E : constant Natural :=
diff --git a/gcc/ada/libgnat/a-wtfiio.adb b/gcc/ada/libgnat/a-wtfiio.adb
index 195a695..c907607 100644
--- a/gcc/ada/libgnat/a-wtfiio.adb
+++ b/gcc/ada/libgnat/a-wtfiio.adb
@@ -70,51 +70,59 @@ package body Ada.Wide_Text_IO.Fixed_IO is
OK_Get_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator <= 2**27
- and then Num'Small_Denominator <= 2**27));
+ (Num'Base'Small_Numerator <= 2**27
+ and then Num'Base'Small_Denominator <= 2**27));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**27)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**27)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**25));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**25));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator <= 2**59
- and then Num'Small_Denominator <= 2**59));
+ (Num'Base'Small_Numerator <= 2**59
+ and then Num'Base'Small_Denominator <= 2**59));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**59)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**59)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**53));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**53));
-- These conditions are derived from the prerequisites of System.Image_F
E : constant Natural := 63 - 32 * Boolean'Pos (OK_Put_32);
diff --git a/gcc/ada/libgnat/a-wtfiio__128.adb b/gcc/ada/libgnat/a-wtfiio__128.adb
index 5e07879..b3ecb46 100644
--- a/gcc/ada/libgnat/a-wtfiio__128.adb
+++ b/gcc/ada/libgnat/a-wtfiio__128.adb
@@ -77,76 +77,88 @@ package body Ada.Wide_Text_IO.Fixed_IO is
OK_Get_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator <= 2**27
- and then Num'Small_Denominator <= 2**27));
+ (Num'Base'Small_Numerator <= 2**27
+ and then Num'Base'Small_Denominator <= 2**27));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**27)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**27)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**25));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**25));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator <= 2**59
- and then Num'Small_Denominator <= 2**59));
+ (Num'Base'Small_Numerator <= 2**59
+ and then Num'Base'Small_Denominator <= 2**59));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**59)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**59)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**53));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**53));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_128 : constant Boolean :=
Num'Base'Object_Size <= 128
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**127)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**127)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**127)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**127)
or else
- (Num'Small_Numerator <= 2**123
- and then Num'Small_Denominator <= 2**123));
+ (Num'Base'Small_Numerator <= 2**123
+ and then Num'Base'Small_Denominator <= 2**123));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_128 : constant Boolean :=
Num'Base'Object_Size <= 128
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**127)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**127)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**127)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**127)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**123)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**123)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**122));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**122));
-- These conditions are derived from the prerequisites of System.Image_F
E : constant Natural :=
diff --git a/gcc/ada/libgnat/a-ztfiio.adb b/gcc/ada/libgnat/a-ztfiio.adb
index 011dc90..1e765ef 100644
--- a/gcc/ada/libgnat/a-ztfiio.adb
+++ b/gcc/ada/libgnat/a-ztfiio.adb
@@ -70,51 +70,59 @@ package body Ada.Wide_Wide_Text_IO.Fixed_IO is
OK_Get_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator <= 2**27
- and then Num'Small_Denominator <= 2**27));
+ (Num'Base'Small_Numerator <= 2**27
+ and then Num'Base'Small_Denominator <= 2**27));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**27)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**27)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**25));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**25));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator <= 2**59
- and then Num'Small_Denominator <= 2**59));
+ (Num'Base'Small_Numerator <= 2**59
+ and then Num'Base'Small_Denominator <= 2**59));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**59)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**59)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**53));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**53));
-- These conditions are derived from the prerequisites of System.Image_F
E : constant Natural := 63 - 32 * Boolean'Pos (OK_Put_32);
diff --git a/gcc/ada/libgnat/a-ztfiio__128.adb b/gcc/ada/libgnat/a-ztfiio__128.adb
index b0556ba..40d791e 100644
--- a/gcc/ada/libgnat/a-ztfiio__128.adb
+++ b/gcc/ada/libgnat/a-ztfiio__128.adb
@@ -78,76 +78,88 @@ package body Ada.Wide_Wide_Text_IO.Fixed_IO is
OK_Get_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator <= 2**27
- and then Num'Small_Denominator <= 2**27));
+ (Num'Base'Small_Numerator <= 2**27
+ and then Num'Base'Small_Denominator <= 2**27));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_32 : constant Boolean :=
Num'Base'Object_Size <= 32
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**31)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**31)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**31)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**31)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**27)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**27)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**25));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**25));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator <= 2**59
- and then Num'Small_Denominator <= 2**59));
+ (Num'Base'Small_Numerator <= 2**59
+ and then Num'Base'Small_Denominator <= 2**59));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_64 : constant Boolean :=
Num'Base'Object_Size <= 64
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**63)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**63)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**63)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**63)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**59)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**59)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**53));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**53));
-- These conditions are derived from the prerequisites of System.Image_F
OK_Get_128 : constant Boolean :=
Num'Base'Object_Size <= 128
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**127)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**127)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**127)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**127)
or else
- (Num'Small_Numerator <= 2**123
- and then Num'Small_Denominator <= 2**123));
+ (Num'Base'Small_Numerator <= 2**123
+ and then Num'Base'Small_Denominator <= 2**123));
-- These conditions are derived from the prerequisites of System.Value_F
OK_Put_128 : constant Boolean :=
Num'Base'Object_Size <= 128
and then
- ((Num'Small_Numerator = 1 and then Num'Small_Denominator <= 2**127)
+ ((Num'Base'Small_Numerator = 1
+ and then Num'Base'Small_Denominator <= 2**127)
or else
- (Num'Small_Denominator = 1 and then Num'Small_Numerator <= 2**127)
+ (Num'Base'Small_Denominator = 1
+ and then Num'Base'Small_Numerator <= 2**127)
or else
- (Num'Small_Numerator < Num'Small_Denominator
- and then Num'Small_Denominator <= 2**123)
+ (Num'Base'Small_Numerator < Num'Base'Small_Denominator
+ and then Num'Base'Small_Denominator <= 2**123)
or else
- (Num'Small_Denominator < Num'Small_Numerator
- and then Num'Small_Numerator <= 2**122));
+ (Num'Base'Small_Denominator < Num'Base'Small_Numerator
+ and then Num'Base'Small_Numerator <= 2**122));
-- These conditions are derived from the prerequisites of System.Image_F
E : constant Natural :=