sem_cat.adb (Check_Categorization_Dependencies): Remote types packages can depend on preleborated packages.

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

	* sem_cat.adb (Check_Categorization_Dependencies): Remote types
	packages can depend on preleborated packages.

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

	* sem_prag.adb (Check_Interrupt_Or_Attach_Handler): Pragmas
	Interrupt_Handler and Attach_Handler not allowed in generics.

From-SVN: r165172
This commit is contained in:
Robert Dewar 2010-10-08 12:57:10 +00:00 committed by Arnaud Charlet
parent 87003b2853
commit 6f123e484c
3 changed files with 25 additions and 0 deletions

View File

@ -1,3 +1,13 @@
2010-10-08 Robert Dewar <dewar@adacore.com>
* sem_cat.adb (Check_Categorization_Dependencies): Remote types
packages can depend on preleborated packages.
2010-10-08 Robert Dewar <dewar@adacore.com>
* sem_prag.adb (Check_Interrupt_Or_Attach_Handler): Pragmas
Interrupt_Handler and Attach_Handler not allowed in generics.
2010-10-08 Robert Dewar <dewar@adacore.com>
* ali.adb: Set Allocator_In_Body if AB parameter present on M line

View File

@ -206,6 +206,17 @@ package body Sem_Cat is
and then In_Package_Body (Unit_Entity)
then
null;
-- Special case: Remote_Types can depend on Preelaborated per
-- Ada 2005 AI 0206.
elsif Unit_Category = Remote_Types
and then Is_Preelaborated (Depended_Entity)
then
null;
-- All other cases, we do have an error
else
Err := True;
end if;

View File

@ -1305,6 +1305,10 @@ package body Sem_Prag is
Error_Pragma_Arg
("argument for pragma% must be library level entity", Arg1);
end if;
if Inside_A_Generic then
Error_Pragma ("pragma% cannot be used inside a generic");
end if;
end Check_Interrupt_Or_Attach_Handler;
-------------------------------------------