diff options
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-std_package.adb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-std_package.adb b/src/vhdl/vhdl-std_package.adb index db6139622..8012f74e1 100644 --- a/src/vhdl/vhdl-std_package.adb +++ b/src/vhdl/vhdl-std_package.adb @@ -1346,6 +1346,12 @@ package body Vhdl.Std_Package is function Get_Minimal_Time_Resolution return Character is begin + -- In vhdl87, time units are locally static, so they are evaluated + -- during analysis. The units cannot be changed later. + if Vhdl_Std = Vhdl_87 then + return 'f'; + end if; + if Get_Use_Flag (Time_Fs_Unit) then return 'f'; end if; |