aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Rupp <rupp@adacore.com>2021-07-26 13:07:30 -0700
committerPierre-Marie de Rodat <derodat@adacore.com>2021-10-01 06:13:34 +0000
commit2e0782a9fab99f32f08b9dc3d8167360425ecb95 (patch)
treecd4fd7b819af4a8150265176a7df0e86a591c47d
parent2467998373b9b6ddd3dae1b8ea72c1ee3054c699 (diff)
downloadgcc-2e0782a9fab99f32f08b9dc3d8167360425ecb95.zip
gcc-2e0782a9fab99f32f08b9dc3d8167360425ecb95.tar.gz
gcc-2e0782a9fab99f32f08b9dc3d8167360425ecb95.tar.bz2
[Ada] Switch to SR0660
gcc/ada/ * libgnat/s-parame__vxworks.ads (time_t_bits): Change to Long_Long_Integer'Size.
-rw-r--r--gcc/ada/libgnat/s-parame__vxworks.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/libgnat/s-parame__vxworks.ads b/gcc/ada/libgnat/s-parame__vxworks.ads
index 11b408b..b22d858 100644
--- a/gcc/ada/libgnat/s-parame__vxworks.ads
+++ b/gcc/ada/libgnat/s-parame__vxworks.ads
@@ -108,11 +108,11 @@ package System.Parameters is
-- Select the appropriate time_t_bits for the VSB in use, then rebuild
-- the runtime using instructions in adainclude/libada.gpr.
- time_t_bits : constant := Long_Integer'Size;
+ -- time_t_bits : constant := Long_Integer'Size;
-- Number of bits in type time_t for SR0650 and before and SR0660 with
-- non-default configuration.
- -- time_t_bits : constant := Long_Long_Integer'Size;
+ time_t_bits : constant := Long_Long_Integer'Size;
-- Number of bits in type time_t for SR0660 with default configuration.
----------------------------------------------