diff options
author | tgingold <tgingold@users.noreply.github.com> | 2017-04-18 06:48:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 06:48:02 +0200 |
commit | 4ba1e81209431b98723dc85d0a5a37c52982e874 (patch) | |
tree | bccfe8cb64e5ea6e9c29f94e9cca8072eec8b66b /src/grt/ghwlib.h | |
parent | 2f29858cd3a29921b28a5e699b848f0ec16fb7cc (diff) | |
parent | ba52acf5442bfdc69bd8ef3f8aee88b6af4a73c5 (diff) | |
download | ghdl-4ba1e81209431b98723dc85d0a5a37c52982e874.tar.gz ghdl-4ba1e81209431b98723dc85d0a5a37c52982e874.tar.bz2 ghdl-4ba1e81209431b98723dc85d0a5a37c52982e874.zip |
Merge pull request #336 from emogenet/master
Move skip flags to own arry in ghwlib + indent new code to indigenous style
Diffstat (limited to 'src/grt/ghwlib.h')
-rw-r--r-- | src/grt/ghwlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grt/ghwlib.h b/src/grt/ghwlib.h index 145e6c2dd..11917542a 100644 --- a/src/grt/ghwlib.h +++ b/src/grt/ghwlib.h @@ -256,7 +256,6 @@ struct ghw_sig { union ghw_type *type; union ghw_val *val; - int skip; }; enum ghw_hie_kind { @@ -333,6 +332,7 @@ struct ghw_handler /* Non-composite (or basic) signals. */ int nbr_sigs; + char *skip_sigs; struct ghw_sig *sigs; /* Hierarchy. */ @@ -359,7 +359,7 @@ void ghw_disp_hie (struct ghw_handler *h, struct ghw_hie *top); int ghw_read_base (struct ghw_handler *h); -void ghw_filter_values (struct ghw_handler *h, int *signals_to_keep, int nb_signals_to_keep); +void ghw_filter_signals (struct ghw_handler *h, int *signals_to_keep, int nb_signals_to_keep); void ghw_disp_values (struct ghw_handler *h); |