Remove unnecessary assignments to local variables in f_arg_asgn

Local variables are not reassigned and are not needed.
This commit is contained in:
ydah 2024-11-11 23:24:34 +09:00 committed by Yudai Takada
parent 3260b0b647
commit 2b1db0faec
Notes: git 2025-01-21 11:25:55 +00:00

View File

@ -6486,8 +6486,7 @@ f_norm_arg : f_bad_arg
f_arg_asgn : f_norm_arg
{
ID id = $1;
arg_var(p, id);
arg_var(p, $1);
$$ = $1;
}
;