diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-04-16 19:03:15 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-04-16 19:03:15 +0200 |
commit | d96f3990b8f0b5b71f224e35e008d44adab05fc4 (patch) | |
tree | 516bc7f19ef067e91afb81bbc730b47138bf7a66 /src | |
parent | 2ce8781f76e0c1695165196aaebf2fe50307d8d1 (diff) | |
download | ghdl-d96f3990b8f0b5b71f224e35e008d44adab05fc4.tar.gz ghdl-d96f3990b8f0b5b71f224e35e008d44adab05fc4.tar.bz2 ghdl-d96f3990b8f0b5b71f224e35e008d44adab05fc4.zip |
synth: ignore component instantiations (TODO).
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/synth-stmts.adb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/synth/synth-stmts.adb b/src/synth/synth-stmts.adb index df49a624c..238faa026 100644 --- a/src/synth/synth-stmts.adb +++ b/src/synth/synth-stmts.adb @@ -815,6 +815,10 @@ package body Synth.Stmts is when Iir_Kind_Sensitized_Process_Statement => Synth_Process_Statement (Syn_Inst, Sim_Child, Stmt); Sim_Child := Sim_Child.Brother; + when Iir_Kind_Component_Instantiation_Statement => + -- TODO. + null; + Sim_Child := Sim_Child.Brother; when others => Error_Kind ("synth_statements", Stmt); end case; |