aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Obry <obry@adacore.com>2014-08-01 08:19:53 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2014-08-01 10:19:53 +0200
commit0ef40c649bd668717cb99a0dfc90a7218bdfbc29 (patch)
tree07e30853b7791aa13e14fb5280a82262657b222d
parentf1a85fe7193cddc99f68c80c6aef96231866cad1 (diff)
downloadgcc-0ef40c649bd668717cb99a0dfc90a7218bdfbc29.zip
gcc-0ef40c649bd668717cb99a0dfc90a7218bdfbc29.tar.gz
gcc-0ef40c649bd668717cb99a0dfc90a7218bdfbc29.tar.bz2
a-direct.adb (C_Size): Returns an int64.
2014-08-01 Pascal Obry <obry@adacore.com> * a-direct.adb (C_Size): Returns an int64. * osint.adb (System.CRTL): New with clause. (File_Length.Internal): Returns an int64. * s-os_lib.ads (File_Length): Returns an int64. From-SVN: r213416
-rw-r--r--gcc/ada/ChangeLog7
-rw-r--r--gcc/ada/a-direct.adb2
-rw-r--r--gcc/ada/osint.adb5
-rw-r--r--gcc/ada/s-os_lib.ads2
4 files changed, 12 insertions, 4 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 55e5b87..844cdd9 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,10 @@
+2014-08-01 Pascal Obry <obry@adacore.com>
+
+ * a-direct.adb (C_Size): Returns an int64.
+ * osint.adb (System.CRTL): New with clause.
+ (File_Length.Internal): Returns an int64.
+ * s-os_lib.ads (File_Length): Returns an int64.
+
2014-08-01 Robert Dewar <dewar@adacore.com>
* gnatchop.adb, gnatcmd.adb, make.adb, mlib-prj.adb, bindgen.adb,
diff --git a/gcc/ada/a-direct.adb b/gcc/ada/a-direct.adb
index 275ad7a..20fd064 100644
--- a/gcc/ada/a-direct.adb
+++ b/gcc/ada/a-direct.adb
@@ -1250,7 +1250,7 @@ package body Ada.Directories is
function Size (Name : String) return File_Size is
C_Name : String (1 .. Name'Length + 1);
- function C_Size (Name : Address) return size_t;
+ function C_Size (Name : Address) return int64;
pragma Import (C, C_Size, "__gnat_named_file_length");
begin
diff --git a/gcc/ada/osint.adb b/gcc/ada/osint.adb
index c0b25cc..0902ae2 100644
--- a/gcc/ada/osint.adb
+++ b/gcc/ada/osint.adb
@@ -39,6 +39,7 @@ with Unchecked_Conversion;
pragma Warnings (Off);
-- This package is used also by gnatcoll
with System.Case_Util; use System.Case_Util;
+with System.CRTL;
pragma Warnings (On);
with GNAT.HTable;
@@ -1076,11 +1077,11 @@ package body Osint is
function Internal
(F : Integer;
N : C_File_Name;
- A : System.Address) return size_t;
+ A : System.Address) return CRTL.int64;
pragma Import (C, Internal, "__gnat_file_length_attr");
begin
- -- The conversion from size_t to Long_Integer is ok here as this
+ -- The conversion from int64 to Long_Integer is ok here as this
-- routine is only to be used by the compiler and we do not expect
-- a unit to be larger than a 32bit integer.
diff --git a/gcc/ada/s-os_lib.ads b/gcc/ada/s-os_lib.ads
index 7c47400..d6d6905 100644
--- a/gcc/ada/s-os_lib.ads
+++ b/gcc/ada/s-os_lib.ads
@@ -434,7 +434,7 @@ package System.OS_Lib is
-- to the current position (origin = SEEK_CUR), end of file (origin =
-- SEEK_END), or start of file (origin = SEEK_SET).
- function File_Length (FD : File_Descriptor) return CRTL.size_t;
+ function File_Length (FD : File_Descriptor) return CRTL.int64;
pragma Import (C, File_Length, "__gnat_file_length");
-- Get length of file from file descriptor FD