summaryrefslogtreecommitdiff
path: root/tools/d2c/rules/grammar.y
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-09-09 21:36:18 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-09-09 21:36:18 (GMT)
commiteb8896aed68fbacf87a2c530fcd584b71da2c222 (patch)
treede3a5938a96740fe772718750dd3433e15c37f55 /tools/d2c/rules/grammar.y
parentc8f8dc0ea69a404b407f84cbccc25c1af7804836 (diff)
Removed the "see" action from available rule actions.
Diffstat (limited to 'tools/d2c/rules/grammar.y')
-rw-r--r--tools/d2c/rules/grammar.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/d2c/rules/grammar.y b/tools/d2c/rules/grammar.y
index bf5b3c2..468b793 100644
--- a/tools/d2c/rules/grammar.y
+++ b/tools/d2c/rules/grammar.y
@@ -82,8 +82,7 @@ rule_cond : NAME { $$ = build_named_cond_expression($1); }
| EXPR_START rule_cond EXPR_END AND EXPR_START rule_cond EXPR_END
{ $$ = build_composed_cond_expression($2, COT_AND, $6); }
-action : SEE RAW_LINE { $$.type = CAT_SEE; $$.details = make_callable($2, false); }
- | UNPREDICTABLE { $$.type = CAT_UNPREDICTABLE; }
+action : UNPREDICTABLE { $$.type = CAT_UNPREDICTABLE; }
| CALL RAW_LINE {
right_op_t rop;
bool status;