home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / exp_ch8.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  67 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              E X P _ C H 8                               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with Atree;    use Atree;
  26. with Einfo;    use Einfo;
  27. with Itypes;   use Itypes;
  28. with Nlists;   use Nlists;
  29. with Nmake;    use Nmake;
  30. with Sinfo;    use Sinfo;
  31.  
  32. package body Exp_Ch8 is
  33.  
  34.    ------------------------------------------
  35.    -- Expand_N_Object_Renaming_Declaration --
  36.    ------------------------------------------
  37.  
  38.    --  Expression_Actions appearing in the Name field must be split as in
  39.    --  Object declarations (see Expand_N_Object_Declaration for details)
  40.  
  41.    procedure Expand_N_Object_Renaming_Declaration (N : Node_Id) is
  42.       Loc : constant Source_Ptr := Sloc (N);
  43.       Nam : Node_Id := Name (N);
  44.  
  45.    begin
  46.       if Nkind (Nam) = N_Expression_Actions then
  47.          Insert_List_Before (N, Actions (Nam));
  48.  
  49.          if Present (First_Itype (Nam)) then
  50.             declare
  51.                Inode : constant Node_Id := Make_Implicit_Types (Loc);
  52.  
  53.             begin
  54.                Transfer_Itypes (From => Nam, To => Inode);
  55.                Insert_Before (N, Inode);
  56.             end;
  57.          end if;
  58.  
  59.          Nam := Expression (Nam);
  60.          Set_Name (N, Nam);
  61.          Set_Renamed_Object (Defining_Identifier (N), Nam);
  62.       end if;
  63.  
  64.    end Expand_N_Object_Renaming_Declaration;
  65.  
  66. end Exp_Ch8;
  67.