aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/uintp.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 10:40:51 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 10:40:51 +0200
commit88b17d450602da928cabdfcbb324de8e76c4e8c4 (patch)
treedf1b05a1f1519cf3236f73c1b27614894acb0ace /gcc/ada/uintp.adb
parent29214696c8b7a2582378107a26a8d4fd8fe67f28 (diff)
downloadgcc-88b17d450602da928cabdfcbb324de8e76c4e8c4.zip
gcc-88b17d450602da928cabdfcbb324de8e76c4e8c4.tar.gz
gcc-88b17d450602da928cabdfcbb324de8e76c4e8c4.tar.bz2
[multiple changes]
2010-06-22 Ed Schonberg <schonberg@adacore.com> * uintp.adb: Fix scope error in operator call. 2010-06-22 Vincent Celier <celier@adacore.com> * makeutl.adb (Executable_Prefix_Path): on VMS, return "/gnu/". * prj-conf.adb (Get_Or_Create_Configuration_File): On VMS, if autoconfiguration is needed, fail indicating that no config project file can be found, as there is no autoconfiguration on VMS. 2010-06-22 Ed Schonberg <schonberg@adacore.com> * sem_res.adb (Make_Call_Into_Operator): Diagnose an incorrect scope for an operator in a functional notation, when operands are universal. From-SVN: r161147
Diffstat (limited to 'gcc/ada/uintp.adb')
-rw-r--r--gcc/ada/uintp.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/uintp.adb b/gcc/ada/uintp.adb
index 3b72d15..b84ae5a 100644
--- a/gcc/ada/uintp.adb
+++ b/gcc/ada/uintp.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2010, 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- --
@@ -239,7 +239,7 @@ package body Uintp is
function Hash_Num (F : Int) return Hnum is
begin
- return Standard."mod" (F, Hnum'Range_Length);
+ return Types."mod" (F, Hnum'Range_Length);
end Hash_Num;
---------------