gas: tc-bpf.c: fix formatting of comment

This commit is contained in:
Jose E. Marchesi
2023-10-28 06:48:42 +02:00
parent 8b476884c3
commit e3e1e1231d

View File

@@ -1647,10 +1647,11 @@ void
md_operand (expressionS *expressionP) md_operand (expressionS *expressionP)
{ {
/* If this hook is invoked it means GAS failed to parse a generic /* If this hook is invoked it means GAS failed to parse a generic
expression. We should inhibit the as_bad in expr.c, so we can fail expression. We should inhibit the as_bad in expr.c, so we can
while parsing instruction alternatives. To do that, we change the fail while parsing instruction alternatives. To do that, we
expression to not have an O_absent. But then we also need to set change the expression to not have an O_absent. But then we also
exp_parse_failed to parse_expression above does the right thing. */ need to set exp_parse_failed to parse_expression above does the
right thing. */
++input_line_pointer; ++input_line_pointer;
expressionP->X_op = O_constant; expressionP->X_op = O_constant;
expressionP->X_add_number = 0; expressionP->X_add_number = 0;