diff options
| author | Tristan Gingold <tgingold@free.fr> | 2020-03-25 18:43:34 +0100 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2020-03-25 18:43:34 +0100 | 
| commit | f3ecb96769ddd8e464ab63e6ba0821cc6062d372 (patch) | |
| tree | 8b22116bd2169f8f9b747136d9c23de6383bc9db /src | |
| parent | 4030f025b21a9570f03137f5342b12aa2d200c4d (diff) | |
| download | ghdl-f3ecb96769ddd8e464ab63e6ba0821cc6062d372.tar.gz ghdl-f3ecb96769ddd8e464ab63e6ba0821cc6062d372.tar.bz2 ghdl-f3ecb96769ddd8e464ab63e6ba0821cc6062d372.zip | |
synth-expr: handle dereference.
Diffstat (limited to 'src')
| -rw-r--r-- | src/synth/synth-expr.adb | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/synth/synth-expr.adb b/src/synth/synth-expr.adb index 6a3408844..98ee96a9e 100644 --- a/src/synth/synth-expr.adb +++ b/src/synth/synth-expr.adb @@ -2014,7 +2014,9 @@ package body Synth.Expr is           when Iir_Kind_Simple_Name             | Iir_Kind_Selected_Name             | Iir_Kind_Interface_Signal_Declaration --  For PSL. -           | Iir_Kind_Signal_Declaration =>  -- For PSL. +           | Iir_Kind_Signal_Declaration   -- For PSL. +           | Iir_Kind_Implicit_Dereference +           | Iir_Kind_Dereference =>              return Synth_Name (Syn_Inst, Expr);           when Iir_Kind_Reference_Name =>              --  Only used for anonymous signals in internal association. | 
