aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-11-02 05:30:36 +0100
committerTristan Gingold <tgingold@free.fr>2014-11-02 05:30:36 +0100
commit5d252b8afe1055f752cafc9f5a89feb95cee853f (patch)
tree50c7c09c350e7be5f8525dc1bbcfd700af0f38d3
parent27d00e5b4c5a1411080ac4ad9172c365b86faffd (diff)
downloadghdl-5d252b8afe1055f752cafc9f5a89feb95cee853f.tar.gz
ghdl-5d252b8afe1055f752cafc9f5a89feb95cee853f.tar.bz2
ghdl-5d252b8afe1055f752cafc9f5a89feb95cee853f.zip
Fix uninitialized variable.
-rw-r--r--translate/translation.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/translate/translation.adb b/translate/translation.adb
index e639809b7..b2b21f3cc 100644
--- a/translate/translation.adb
+++ b/translate/translation.adb
@@ -1396,7 +1396,7 @@ package body Translation is
Object_Rti : O_Dnode := O_Dnode_Null;
-- Function to compute the value of object (used for implicit
-- guard signal declaration).
- Object_Function : O_Dnode;
+ Object_Function : O_Dnode := O_Dnode_Null;
when Kind_Alias =>
Alias_Var : Var_Type;