===================================================================
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
+-- Copyright (C) 1992-2017, 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- --
@@ -3205,7 +3205,7 @@
--
-- This variable is updated as a side effect of function Get_Value.
- Box_Node : Node_Id;
+ Box_Node : Node_Id := Empty;
Is_Box_Present : Boolean := False;
Others_Box : Integer := 0;
-- Ada 2005 (AI-287): Variables used in case of default initialization
===================================================================
@@ -12667,6 +12667,7 @@
Eloc : Source_Ptr;
Expr : Node_Id;
Str : Node_Id;
+ pragma Warnings (Off, Str);
begin
-- Pragma Check is Ghost when it applies to a Ghost entity. Set
===================================================================
@@ -5652,6 +5652,7 @@
Decl : Node_Id;
Expr : Node_Id;
+ pragma Warnings (Off, Expr);
F1, F2 : Entity_Id;
Func : Entity_Id;
Op_Name : Name_Id;
===================================================================
@@ -1174,6 +1174,7 @@
Component_Aliased : Boolean;
Comp_Byte_Aligned : Boolean;
+ pragma Warnings (Off, Comp_Byte_Aligned);
-- Set for the record case, True if Comp starts on a byte boundary
-- (in which case it is allowed to have different storage order).
===================================================================
@@ -4322,7 +4322,7 @@
Context : constant Node_Id := Parent (N);
Attr : Node_Id;
- Encl_Loop : Node_Id;
+ Encl_Loop : Node_Id := Empty;
Encl_Prag : Node_Id := Empty;
Loop_Id : Entity_Id := Empty;
Scop : Entity_Id;
===================================================================
@@ -6457,8 +6457,8 @@
--------------------
procedure Why_Not_Static (Expr : Node_Id) is
- N : constant Node_Id := Original_Node (Expr);
- Typ : Entity_Id;
+ N : constant Node_Id := Original_Node (Expr);
+ Typ : Entity_Id := Empty;
E : Entity_Id;
Alt : Node_Id;
Exp : Node_Id;
===================================================================
@@ -13334,10 +13334,10 @@
Expr : Node_Id;
X_Alignment : Uint;
- Y_Alignment : Uint;
+ Y_Alignment : Uint := Uint_0;
X_Size : Uint;
- Y_Size : Uint;
+ Y_Size : Uint := Uint_0;
X_Offs : Uint;
===================================================================
@@ -2875,6 +2875,7 @@
declare
Exp : Node_Id;
Nam : Name_Id;
+ pragma Warnings (Off, Nam);
Ritem : Node_Id;
begin