| summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'ast-to-instr/src/VHDLWNode.java')
| -rw-r--r-- | ast-to-instr/src/VHDLWNode.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ast-to-instr/src/VHDLWNode.java b/ast-to-instr/src/VHDLWNode.java index 66d0c00..84cebb9 100644 --- a/ast-to-instr/src/VHDLWNode.java +++ b/ast-to-instr/src/VHDLWNode.java @@ -168,7 +168,11 @@ public class VHDLWNode extends VHDLNode XPathConstants.NODE ); - handle_expression(local_id, sources); + if (sources != (Node) null) + { + /* Not "others" */ + handle_read_expr_predicates(local_id, sources); + } } /***************************************************************************/ |


