summaryrefslogtreecommitdiff
path: root/tools/d2c/rules/grammar.y
diff options
context:
space:
mode:
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;