gnat.adc: Remove restriction `No_Secondary_Stack`

This was only set to get more obvious error messages (i.e. restriction
violations instead of missing packages in the runtime environment).
However, it doesn't play well with the standard interfaces for console
applications. So remove the restriction to allow usage of the secondary
stack where possible.

Change-Id: Iceb64fe2b6f304e2e88b18cf3435fdbfda57440d
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/18784
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Nico Huber 2017-03-05 23:27:53 +01:00 committed by Stefan Reinauer
parent 78ca582d1b
commit 3bf6759dc0
2 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@ pragma Restrictions (No_Implicit_Loops);
pragma Restrictions (No_Initialize_Scalars);
pragma Restrictions (No_Local_Allocators);
pragma Restrictions (No_Recursion);
pragma Restrictions (No_Secondary_Stack);
pragma Restrictions (No_Streams);
pragma Restrictions (No_Tasking);
pragma Restrictions (No_Unchecked_Access);

View File

@ -10,7 +10,6 @@ pragma Restrictions (No_Implicit_Loops);
pragma Restrictions (No_Initialize_Scalars);
pragma Restrictions (No_Local_Allocators);
pragma Restrictions (No_Recursion);
pragma Restrictions (No_Secondary_Stack);
pragma Restrictions (No_Streams);
pragma Restrictions (No_Tasking);
pragma Restrictions (No_Unchecked_Access);