diff options
author | gingold | 2005-12-20 15:05:23 +0000 |
---|---|---|
committer | gingold | 2005-12-20 15:05:23 +0000 |
commit | 517a3edcd4d7d97cdfe3301e362859eb816aeb29 (patch) | |
tree | 252ea5dd1b5d37e536395f5842a75a6fcb8ccb56 /translate/grt/ghwlib.h | |
parent | cb45d7c240f4aabbd1dd716dd8bf7ab5b2107ff2 (diff) | |
download | ghdl-517a3edcd4d7d97cdfe3301e362859eb816aeb29.tar.gz ghdl-517a3edcd4d7d97cdfe3301e362859eb816aeb29.tar.bz2 ghdl-517a3edcd4d7d97cdfe3301e362859eb816aeb29.zip |
bugs fix for ghw writer
Diffstat (limited to 'translate/grt/ghwlib.h')
-rw-r--r-- | translate/grt/ghwlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/translate/grt/ghwlib.h b/translate/grt/ghwlib.h index 7441d1e..dbf20fe 100644 --- a/translate/grt/ghwlib.h +++ b/translate/grt/ghwlib.h @@ -390,7 +390,8 @@ void ghw_close (struct ghw_handler *h); const char *ghw_get_dir (int is_downto); -void ghw_disp_range (union ghw_range *rng); +/* Note: TYPE must be a base type (used only to display literals). */ +void ghw_disp_range (union ghw_type *type, union ghw_range *rng); void ghw_disp_type (struct ghw_handler *h, union ghw_type *t); |