OSDN Git Service

* java-tree.h (push_labeled_block, pop_labeled_block): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_imgv.ads
index e05fec5..54d4528 100644 (file)
@@ -6,9 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                            $Revision: 1.2 $                              --
---                                                                          --
---            Copyright (C) 2000 Free Software Foundation, Inc.             --
+--          Copyright (C) 2000-2005, 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- --
 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
 -- for  more details.  You should have  received  a copy of the GNU General --
 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
--- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
--- MA 02111-1307, USA.                                                      --
+-- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
+-- Boston, MA 02110-1301, 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.      --
 --                                                                          --
 ------------------------------------------------------------------------------
 
@@ -80,8 +78,12 @@ package Exp_Imgv is
    --  This procedure is called from Exp_Attr to expand an occurrence
    --  of the attribute Value.
 
-   procedure Expand_Width_Attribute (N : Node_Id; Wide : Boolean);
-   --  This procedure is called from Exp_Attr to expand an occurrence of
-   --  the attributes Width (Wide = False) or Wide_Width (Wide = True).
+   type Atype is (Normal, Wide, Wide_Wide);
+   --  Type of attribute in call to Expand_Width_Attribute
+
+   procedure Expand_Width_Attribute (N : Node_Id; Attr : Atype := Normal);
+   --  This procedure is called from Exp_Attr to expand an occurrence of the
+   --  attributes Width (Attr = Normal), or Wide_Width (Attr Wide), or
+   --  Wide_Wide_Width (Attr = Wide_Wide).
 
 end Exp_Imgv;