aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-01-04 01:47:41 +0100
committerTristan Gingold <tgingold@free.fr>2014-01-04 01:47:41 +0100
commit3303c1924bae3c699db050e6c33ff814c5e0eb3f (patch)
treea7cc786272f03b3eae454adb25f9f016dceb1b06
parent98067eb30f0097955b086b3bf3ad5da51e558546 (diff)
downloadghdl-3303c1924bae3c699db050e6c33ff814c5e0eb3f.tar.gz
ghdl-3303c1924bae3c699db050e6c33ff814c5e0eb3f.tar.bz2
ghdl-3303c1924bae3c699db050e6c33ff814c5e0eb3f.zip
Avoid a crash for component declarations in processes.
-rw-r--r--parse.adb3
1 files changed, 2 insertions, 1 deletions
diff --git a/parse.adb b/parse.adb
index dc5c9fddd..6f64ce1be 100644
--- a/parse.adb
+++ b/parse.adb
@@ -3269,7 +3269,8 @@ package body Parse is
case Get_Kind (Parent) is
when Iir_Kind_Entity_Declaration
| Iir_Kind_Procedure_Body
- | Iir_Kind_Function_Body =>
+ | Iir_Kind_Function_Body
+ | Iir_Kinds_Process_Statement =>
Error_Msg_Parse
("component declaration are not allowed here");
when others =>