Commit ed00f472 by Robert Dewar Committed by Arnaud Charlet

sem_case.adb, [...] (Bad_Predicated_Subtype_Use): Change order of parameters.

2010-10-22  Robert Dewar  <dewar@adacore.com>

	* sem_case.adb, sem_attr.adb (Bad_Predicated_Subtype_Use): Change order
	of parameters.
	* sem_ch13.adb (Build_Predicate_Function): Don't give inheritance
	messages for generic actual subtypes.
	* sem_ch9.adb, sem_res.adb, sem_util.adb, sem_util.ads, sem_ch3.adb
	(Bad_Predicated_Subtype_Use): Use this procedure.

2010-10-22  Robert Dewar  <dewar@adacore.com>

	* sem_ch5.adb: Minor reformatting.

From-SVN: r165829
parent 86200f66
2010-10-22 Robert Dewar <dewar@adacore.com> 2010-10-22 Robert Dewar <dewar@adacore.com>
* sem_case.adb, sem_attr.adb (Bad_Predicated_Subtype_Use): Change order
of parameters.
* sem_ch13.adb (Build_Predicate_Function): Don't give inheritance
messages for generic actual subtypes.
* sem_ch9.adb, sem_res.adb, sem_util.adb, sem_util.ads, sem_ch3.adb
(Bad_Predicated_Subtype_Use): Use this procedure.
2010-10-22 Robert Dewar <dewar@adacore.com>
* sem_ch5.adb: Minor reformatting.
2010-10-22 Robert Dewar <dewar@adacore.com>
* a-except-2005.adb (Rmsg_18): New message text. * a-except-2005.adb (Rmsg_18): New message text.
* a-except.adb (Rmsg_18): New message text. * a-except.adb (Rmsg_18): New message text.
* atree.adb (List25): New function * atree.adb (List25): New function
......
...@@ -842,7 +842,7 @@ package body Sem_Attr is ...@@ -842,7 +842,7 @@ package body Sem_Attr is
if Comes_From_Source (N) then if Comes_From_Source (N) then
Error_Msg_Name_1 := Aname; Error_Msg_Name_1 := Aname;
Bad_Predicated_Subtype_Use Bad_Predicated_Subtype_Use
(P_Type, N, "type& has predicates, attribute % not allowed"); ("type& has predicates, attribute % not allowed", N, P_Type);
end if; end if;
end Bad_Attribute_For_Predicate; end Bad_Attribute_For_Predicate;
......
...@@ -866,9 +866,8 @@ package body Sem_Case is ...@@ -866,9 +866,8 @@ package body Sem_Case is
or else No (Static_Predicate (E)) or else No (Static_Predicate (E))
then then
Bad_Predicated_Subtype_Use Bad_Predicated_Subtype_Use
(E, N, ("cannot use subtype& with non-static "
"cannot use subtype& with non-static " & "predicate as case alternative", N, E);
& "predicate as case alternative");
-- Static predicate case -- Static predicate case
......
...@@ -3888,9 +3888,13 @@ package body Sem_Ch13 is ...@@ -3888,9 +3888,13 @@ package body Sem_Ch13 is
Right_Opnd => Exp); Right_Opnd => Exp);
end if; end if;
-- Output info message on inheritance if required -- Output info message on inheritance if required. Note we do not
-- give this information for generic actual types, since it is
-- unwelcome noise in that case in instantiations.
if Opt.List_Inherited_Aspects then if Opt.List_Inherited_Aspects
and then not Is_Generic_Actual_Type (Typ)
then
Error_Msg_Sloc := Sloc (Predicate_Function (T)); Error_Msg_Sloc := Sloc (Predicate_Function (T));
Error_Msg_Node_2 := T; Error_Msg_Node_2 := T;
Error_Msg_N ("?info: & inherits predicate from & #", Typ); Error_Msg_N ("?info: & inherits predicate from & #", Typ);
...@@ -4087,9 +4091,10 @@ package body Sem_Ch13 is ...@@ -4087,9 +4091,10 @@ package body Sem_Ch13 is
function Hi_Val (N : Node_Id) return Uint is function Hi_Val (N : Node_Id) return Uint is
begin begin
if Nkind (N) = N_Identifier then if Is_Static_Expression (N) then
return Expr_Value (N); return Expr_Value (N);
else else
pragma Assert (Nkind (N) = N_Range);
return Expr_Value (High_Bound (N)); return Expr_Value (High_Bound (N));
end if; end if;
end Hi_Val; end Hi_Val;
...@@ -4100,9 +4105,10 @@ package body Sem_Ch13 is ...@@ -4100,9 +4105,10 @@ package body Sem_Ch13 is
function Lo_Val (N : Node_Id) return Uint is function Lo_Val (N : Node_Id) return Uint is
begin begin
if Nkind (N) = N_Identifier then if Is_Static_Expression (N) then
return Expr_Value (N); return Expr_Value (N);
else else
pragma Assert (Nkind (N) = N_Range);
return Expr_Value (Low_Bound (N)); return Expr_Value (Low_Bound (N));
end if; end if;
end Lo_Val; end Lo_Val;
...@@ -4124,19 +4130,19 @@ package body Sem_Ch13 is ...@@ -4124,19 +4130,19 @@ package body Sem_Ch13 is
SHi := Hi_Val (N); SHi := Hi_Val (N);
end if; end if;
-- Identifier case -- Static expression case
else pragma Assert (Nkind (N) = N_Identifier); elsif Is_Static_Expression (N) then
SLo := Lo_Val (N);
SHi := Hi_Val (N);
-- Static expression case -- Identifier (other than static expression) case
if Is_Static_Expression (N) then else pragma Assert (Nkind (N) = N_Identifier);
SLo := Lo_Val (N);
SHi := Hi_Val (N);
-- Type case -- Type case
elsif Is_Type (Entity (N)) then if Is_Type (Entity (N)) then
-- If type has static predicates, process them recursively -- If type has static predicates, process them recursively
......
...@@ -4429,11 +4429,9 @@ package body Sem_Ch3 is ...@@ -4429,11 +4429,9 @@ package body Sem_Ch3 is
-- Check error of subtype with predicate for index type -- Check error of subtype with predicate for index type
if Has_Predicates (Etype (Index)) then Bad_Predicated_Subtype_Use
Error_Msg_NE ("subtype& has predicate, not allowed as index subtype",
("subtype& has predicate, not allowed as index subtype", Index, Etype (Index));
Index, Etype (Index));
end if;
-- Move to next index -- Move to next index
...@@ -11402,9 +11400,9 @@ package body Sem_Ch3 is ...@@ -11402,9 +11400,9 @@ package body Sem_Ch3 is
-- Check error of subtype with predicate in index constraint -- Check error of subtype with predicate in index constraint
elsif Has_Predicates (Entity (S)) then else
Error_Msg_NE Bad_Predicated_Subtype_Use
("subtype& has predicate, not allowed in index consraint", ("subtype& has predicate, not allowed in index constraint",
S, Entity (S)); S, Entity (S));
end if; end if;
......
...@@ -894,11 +894,9 @@ package body Sem_Ch9 is ...@@ -894,11 +894,9 @@ package body Sem_Ch9 is
-- Check subtype with predicate in entry family -- Check subtype with predicate in entry family
if Has_Predicates (Etype (D_Sdef)) then Bad_Predicated_Subtype_Use
Error_Msg_NE ("subtype& has predicate, not allowed in entry family",
("subtype& has predicate, not allowed in entry family", D_Sdef, Etype (D_Sdef));
D_Sdef, Etype (D_Sdef));
end if;
end if; end if;
-- Decorate Def_Id -- Decorate Def_Id
......
...@@ -8481,7 +8481,7 @@ package body Sem_Res is ...@@ -8481,7 +8481,7 @@ package body Sem_Res is
-- Check bad use of type with predicates -- Check bad use of type with predicates
if Has_Predicates (Etype (Drange)) then if Has_Predicates (Etype (Drange)) then
Error_Msg_NE Bad_Predicated_Subtype_Use
("subtype& has predicate, not allowed in slice", ("subtype& has predicate, not allowed in slice",
Drange, Etype (Drange)); Drange, Etype (Drange));
......
...@@ -334,21 +334,21 @@ package body Sem_Util is ...@@ -334,21 +334,21 @@ package body Sem_Util is
-------------------------------- --------------------------------
procedure Bad_Predicated_Subtype_Use procedure Bad_Predicated_Subtype_Use
(Typ : Entity_Id; (Msg : String;
N : Node_Id; N : Node_Id;
Msg : String) Typ : Entity_Id)
is is
begin begin
if Has_Predicates (Typ) then if Has_Predicates (Typ) then
if Is_Generic_Actual_Type (Typ) then if Is_Generic_Actual_Type (Typ) then
Error_Msg_F (Msg & '?', Typ); Error_Msg_FE (Msg & '?', N, Typ);
Error_Msg_F ("\Program_Error will be raised at run time?", Typ); Error_Msg_F ("\Program_Error will be raised at run time?", N);
Insert_Action (N, Insert_Action (N,
Make_Raise_Program_Error (Sloc (N), Make_Raise_Program_Error (Sloc (N),
Reason => PE_Bad_Predicated_Generic_Type)); Reason => PE_Bad_Predicated_Generic_Type));
else else
Error_Msg_F (Msg, Typ); Error_Msg_FE (Msg, N, Typ);
end if; end if;
end if; end if;
end Bad_Predicated_Subtype_Use; end Bad_Predicated_Subtype_Use;
......
...@@ -94,18 +94,19 @@ package Sem_Util is ...@@ -94,18 +94,19 @@ package Sem_Util is
-- whether an error or warning is given. -- whether an error or warning is given.
procedure Bad_Predicated_Subtype_Use procedure Bad_Predicated_Subtype_Use
(Typ : Entity_Id; (Msg : String;
N : Node_Id; N : Node_Id;
Msg : String); Typ : Entity_Id);
-- This is called when Typ, a predicated subtype, is used in a context -- This is called when Typ, a predicated subtype, is used in a context
-- which does not allow the use of a predicated subtype. Msg will be -- which does not allow the use of a predicated subtype. Msg is passed
-- passed to Error_Msg_F to output an appropriate message. The caller -- to Error_Msg_FE to output an appropriate message using N as the
-- should set up any insertions other than the & for the type itself. -- location, and Typ as the entity. The caller must set up any insertions
-- Note that if Typ is a generic actual type, then the message will be -- other than the & for the type itself. Note that if Typ is a generic
-- output as a warning, and a raise Program_Error is inserted using -- actual type, then the message will be output as a warning, and a
-- Insert_Action with node N as the insertion point. Node N also supplies -- raise Program_Error is inserted using Insert_Action with node N as
-- the source location for construction of the raise node. If Typ is NOT a -- the insertion point. Node N also supplies the source location for
-- type with predicates this call has no effect. -- construction of the raise node. If Typ is NOT a type with predicates
-- this call has no effect.
function Build_Actual_Subtype function Build_Actual_Subtype
(T : Entity_Id; (T : Entity_Id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment