diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-09-02 07:23:00 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-09-02 07:23:00 +0200 |
commit | e7c543790d49cada14536af8b4b23eb22d796278 (patch) | |
tree | 74d21bd9a001afae88a71e2637762507681b4c25 /src/vhdl | |
parent | 18eb592485fc7a002519bec4af8c9536b136410b (diff) | |
download | ghdl-e7c543790d49cada14536af8b4b23eb22d796278.tar.gz ghdl-e7c543790d49cada14536af8b4b23eb22d796278.tar.bz2 ghdl-e7c543790d49cada14536af8b4b23eb22d796278.zip |
vhdl,psl: abort is now identical to async_abort. For #1654
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-canon.adb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vhdl/vhdl-canon.adb b/src/vhdl/vhdl-canon.adb index a9efeb457..9e3dea60e 100644 --- a/src/vhdl/vhdl-canon.adb +++ b/src/vhdl/vhdl-canon.adb @@ -1744,11 +1744,10 @@ package body Vhdl.Canon is -- Generate the NFA. case Get_Kind (Prop) is when N_Async_Abort - | N_Sync_Abort => + | N_Sync_Abort + | N_Abort => Prop := Get_Property (Prop); Set_PSL_Abort_Flag (Stmt, True); - when N_Abort => - null; when others => null; end case; |