aboutsummaryrefslogtreecommitdiffstats
path: root/src/psl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-13 06:29:08 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-13 06:30:37 +0100
commit8b062ed9ee5107400d176d703dd8bb22eaf0138e (patch)
tree4d3f6f5e0b3ef97e85676fe127ac6d517f5d2897 /src/psl
parenta704fa44c74d939650673bbf26de67d8e27e7bda (diff)
downloadghdl-8b062ed9ee5107400d176d703dd8bb22eaf0138e.tar.gz
ghdl-8b062ed9ee5107400d176d703dd8bb22eaf0138e.tar.bz2
ghdl-8b062ed9ee5107400d176d703dd8bb22eaf0138e.zip
psl-rewrites: handle N_Paren_Prop (simply discard).
Diffstat (limited to 'src/psl')
-rw-r--r--src/psl/psl-rewrites.adb3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/psl/psl-rewrites.adb b/src/psl/psl-rewrites.adb
index 35bce015d..33c41697f 100644
--- a/src/psl/psl-rewrites.adb
+++ b/src/psl/psl-rewrites.adb
@@ -588,6 +588,9 @@ package body PSL.Rewrites is
when N_Property_Instance =>
Rewrite_Instance (N);
return N;
+ when N_Paren_Prop =>
+ -- Note: discard it.
+ return Rewrite_Property (Get_Property (N));
when others =>
Error_Kind ("rewrite_property", N);
end case;