diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-12-21 07:39:30 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-12-21 07:39:30 +0100 |
commit | 9544c205ae35ba3d7fc6040e965dc207ec639cc7 (patch) | |
tree | a2c082a440b43836f148ba0ecf50e28672e6f298 /src/grt | |
parent | a9d86c3387b11b5d514438621d50d31543ffc317 (diff) | |
download | ghdl-9544c205ae35ba3d7fc6040e965dc207ec639cc7.tar.gz ghdl-9544c205ae35ba3d7fc6040e965dc207ec639cc7.tar.bz2 ghdl-9544c205ae35ba3d7fc6040e965dc207ec639cc7.zip |
fst: don't try to detect aliases (make fst file bigger).
Diffstat (limited to 'src/grt')
-rw-r--r-- | src/grt/grt-fst.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grt/grt-fst.adb b/src/grt/grt-fst.adb index a290dd4f6..121410381 100644 --- a/src/grt/grt-fst.adb +++ b/src/grt/grt-fst.adb @@ -46,7 +46,7 @@ package body Grt.Fst is -- FST format has a mechanism to declare signal aliases (if two signals -- in the hierarchy are the same). Enabling this reduce the number of -- signals dumped, but weirdly it makes the FST file slightly bigger. - Flag_Aliases : constant Boolean := True; + Flag_Aliases : constant Boolean := False; -- Global FST context. Set to non-NULL iff dumping signals to an FST file. Context : fstContext := Null_fstContext; |