aboutsummaryrefslogtreecommitdiffstats
path: root/nodes.adb
diff options
context:
space:
mode:
authorgingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7>2006-10-02 04:33:36 +0000
committergingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7>2006-10-02 04:33:36 +0000
commita81f695b15865268fea6ee062a381ba8e43a02b4 (patch)
tree8bc86734eda054c31b705ceab4f4762e96422750 /nodes.adb
parentf51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac (diff)
downloadghdl-a81f695b15865268fea6ee062a381ba8e43a02b4.tar.gz
ghdl-a81f695b15865268fea6ee062a381ba8e43a02b4.tar.bz2
ghdl-a81f695b15865268fea6ee062a381ba8e43a02b4.zip
direct drivers and bugs fix
Diffstat (limited to 'nodes.adb')
-rw-r--r--nodes.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/nodes.adb b/nodes.adb
index a99417cd2..9547fb043 100644
--- a/nodes.adb
+++ b/nodes.adb
@@ -384,12 +384,12 @@ package body Nodes is
function Get_Odigit2 (N : Node_Type) return Bit3_Type is
begin
- return Nodet.Table (N).Odigit2;
+ return Nodet.Table (N + 1).Odigit1;
end Get_Odigit2;
procedure Set_Odigit2 (N : Node_Type; V : Bit3_Type) is
begin
- Nodet.Table (N).Odigit2 := V;
+ Nodet.Table (N + 1).Odigit1 := V;
end Set_Odigit2;