diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-06-01 08:23:16 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-06-01 08:23:53 +0200 |
commit | 65413b559c9d5a4ddae5e165e47542f8592e7a09 (patch) | |
tree | 4edc73522b33bf13e17b7c357b2aa238e67afe25 | |
parent | 4e97776d0a637d0889bcdb0979e4dcb8cdb9d0f4 (diff) | |
download | ghdl-65413b559c9d5a4ddae5e165e47542f8592e7a09.tar.gz ghdl-65413b559c9d5a4ddae5e165e47542f8592e7a09.tar.bz2 ghdl-65413b559c9d5a4ddae5e165e47542f8592e7a09.zip |
Add No_Secondary_Stack restriction.
-rw-r--r-- | src/grt/grt.adc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/grt/grt.adc b/src/grt/grt.adc index 12091ce18..635f95fad 100644 --- a/src/grt/grt.adc +++ b/src/grt/grt.adc @@ -48,6 +48,8 @@ pragma Restrictions (No_Implicit_Heap_Allocations); pragma Restrictions (No_Initialize_Scalars); pragma Suppress (Overflow_Check); +pragma Restrictions (No_Secondary_Stack); + -- Too strong: -- pragma Restrictions (No_Elaboration_Code); |