diff options
author | Brian Drummond <brian@shapes.demon.co.uk> | 2013-12-15 11:35:36 +0000 |
---|---|---|
committer | Brian Drummond <brian@shapes.demon.co.uk> | 2013-12-15 11:35:36 +0000 |
commit | 3bf5fde4a2ccc7316e7d5e61cc2b893969925fbe (patch) | |
tree | 952cac0457cb012e58e8dedd9de87980e4d070d1 | |
parent | 8953ea90bf3ba0d5639f9d22f0c76222793a012f (diff) | |
download | ghdl-3bf5fde4a2ccc7316e7d5e61cc2b893969925fbe.tar.gz ghdl-3bf5fde4a2ccc7316e7d5e61cc2b893969925fbe.tar.bz2 ghdl-3bf5fde4a2ccc7316e7d5e61cc2b893969925fbe.zip |
Patch for https://gna.org/bugs/?20597 and https://gna.org/support/index.php?2553. Abort compilation if previous errors, or raise bug if none, when asked to Get_Kind of a null object.
-rw-r--r-- | iirs.adb | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -145,6 +145,15 @@ package body Iirs is -- Speed up: avoid to check that nkind is in the bounds of Iir_Kind. pragma Suppress (Range_Check); begin + if An_Iir = Null_Iir then + if Nbr_Errors = 0 then + Failed ("Mode", An_Iir); + else + Error_Msg_Sem ("Aborting compilation due to previous errors.", + An_Iir); + raise Compilation_Error; + end if; + end if; return Iir_Kind'Val (Get_Nkind (An_Iir)); end Get_Kind; |