summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 8f1a930f38..fe73627fa0 100644
--- a/parse.y
+++ b/parse.y
@@ -4720,9 +4720,9 @@ f_arg : f_arg_item
f_label : tLABEL
{
ID id = get_id($1);
- $$ = formal_argument(id);
- arg_var($$);
+ arg_var(formal_argument(id));
current_arg = id;
+ $$ = $1;
}
;