summaryrefslogtreecommitdiff
path: root/gcc/ada/g-comver.adb
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2008-11-29 10:31:53 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2008-11-29 10:31:53 +0000
commitf9805f52d581f361e33ac770f26fc5c48580a72a (patch)
treec313b812c6f6c806934c55c9f0a8f8c833af4c39 /gcc/ada/g-comver.adb
parentbce4ea615d18b2bc6fef33aa4ea375511169c42a (diff)
downloadgcc-f9805f52d581f361e33ac770f26fc5c48580a72a.tar.gz
re PR ada/30827 (GNAT.compiler_version problem for official releases)
PR ada/30827 * g-comver.adb (Ver_Len_Max): Fix inconsistency. From-SVN: r142274
Diffstat (limited to 'gcc/ada/g-comver.adb')
-rw-r--r--gcc/ada/g-comver.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/g-comver.adb b/gcc/ada/g-comver.adb
index ae3bf3bf66c..e3191b58e61 100644
--- a/gcc/ada/g-comver.adb
+++ b/gcc/ada/g-comver.adb
@@ -37,7 +37,7 @@
package body GNAT.Compiler_Version is
- Ver_Len_Max : constant := 32;
+ Ver_Len_Max : constant := 64;
-- This is logically a reference to Gnatvsn.Ver_Len_Max but we cannot
-- import this directly since run-time units cannot WITH compiler units.