aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-10-02 08:14:12 +0200
committerTristan Gingold <tgingold@free.fr>2016-10-02 08:14:12 +0200
commitdeac06f0a1aee47a6c4504e2a439842584066b84 (patch)
tree68f9e3123ef88fd8bd9849d8d543fc326d5f2651 /src
parent83b68f40eed8f003140be35d966bdd72ec7c4e20 (diff)
downloadghdl-deac06f0a1aee47a6c4504e2a439842584066b84.tar.gz
ghdl-deac06f0a1aee47a6c4504e2a439842584066b84.tar.bz2
ghdl-deac06f0a1aee47a6c4504e2a439842584066b84.zip
sem_names: add comments
Diffstat (limited to 'src')
-rw-r--r--src/vhdl/sem_names.adb15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/vhdl/sem_names.adb b/src/vhdl/sem_names.adb
index 22c2b06eb..58945b594 100644
--- a/src/vhdl/sem_names.adb
+++ b/src/vhdl/sem_names.adb
@@ -1043,13 +1043,24 @@ package body Sem_Names is
-- other than ...], whose prefix is either a locally static subtype
-- or is an object that is of a locally static subtype, and whose
-- actual parameter (if any) is a locally static expression.
+ --
+ -- LRM08 9.4.3 Globally static primaries
+ -- l) A predefined attribute that is a function, [other than ... and
+ -- other than ...], whose prefix is appropriate for a globally
+ -- static attribute, and whose actual parameter (if any) is a
+ -- globally static expression.
+ --
+ -- A prefix is appropriate for a globally static attribute if it denotes
+ -- a signal, a constant, a type or subtype, a globally static function
+ -- call, a variable that is not of an access type, or a variable of an
+ -- access type whose designated subtype is fully constrained.
- -- LRM 7.4.1
+ -- LRM93 7.4.1
-- A locally static range is either [...], or a range of the first form
-- whose prefix denotes either a locally static subtype or an object
-- that is of a locally static subtype.
- -- LRM 7.4.2
+ -- LRM93 7.4.2
-- A globally static range is either [...], or a range of the first form
-- whose prefix denotes either a globally static subtype or an object
-- that is of a globally static subtype.