OSDN Git Service

Add Fariborz to my last change.
[pf3gnuchains/gcc-fork.git] / gcc / ada / fname-sf.adb
index 10583d6..28977e7 100644 (file)
@@ -6,8 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---                                                                          --
---          Copyright (C) 1992-2000 Free Software Foundation, Inc.          --
+--          Copyright (C) 1992-2004 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- --
@@ -21,7 +20,7 @@
 -- MA 02111-1307, USA.                                                      --
 --                                                                          --
 -- GNAT was originally developed  by the GNAT team at  New York University. --
--- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
+-- Extensive contributions were provided by Ada Core Technologies Inc.      --
 --                                                                          --
 ------------------------------------------------------------------------------
 
@@ -47,7 +46,11 @@ package body Fname.SF is
    -- Local Procedures --
    ----------------------
 
-   procedure Set_File_Name (Typ : Character; U : String; F : String);
+   procedure Set_File_Name
+     (Typ   : Character;
+      U     : String;
+      F     : String;
+      Index : Natural);
    --  This is a transfer function that is called from Scan_SFN_Pragmas,
    --  and reformats its parameters appropriately for the version of
    --  Set_File_Name found in Fname.SF.
@@ -90,10 +93,14 @@ package body Fname.SF is
    -- Set_File_Name --
    -------------------
 
-   procedure Set_File_Name (Typ : Character; U : String; F : String) is
+   procedure Set_File_Name
+     (Typ   : Character;
+      U     : String;
+      F     : String;
+      Index : Natural)
+   is
       Unm : Unit_Name_Type;
       Fnm : File_Name_Type;
-
    begin
       Name_Buffer (1 .. U'Length) := U;
       Name_Len := U'Length;
@@ -105,7 +112,7 @@ package body Fname.SF is
       Name_Buffer (1 .. F'Length) := F;
       Name_Len := F'Length;
       Fnm := Name_Find;
-      Fname.UF.Set_File_Name (Unm, Fnm);
+      Fname.UF.Set_File_Name (Unm, Fnm, Nat (Index));
    end Set_File_Name;
 
    ---------------------------