@@ -2627,7 +2627,7 @@ (define_insn "*cv_branch<mode>"
"TARGET_XCVBI"
{
if (get_attr_length (insn) == 12)
- return "cv.b%N1\t%2,%z3,1f; jump\t%l0,ra; 1:";
+ return "cv.b%n1\t%2,%z3,1f; jump\t%l0,ra; 1:";
return "cv.b%C1imm\t%2,%3,%0";
}
@@ -2645,7 +2645,7 @@ (define_insn "*branch<mode>"
"TARGET_XCVBI"
{
if (get_attr_length (insn) == 12)
- return "b%N1\t%2,%z3,1f; jump\t%l0,ra; 1:";
+ return "b%n1\t%2,%z3,1f; jump\t%l0,ra; 1:";
return "b%C1\t%2,%z3,%l0";
}
@@ -6823,7 +6823,7 @@ riscv_asm_output_opcode (FILE *asm_out_file, const char *p)
any outermost HIGH.
'R' Print the low-part relocation associated with OP.
'C' Print the integer branch condition for comparison OP.
- 'N' Print the inverse of the integer branch condition for comparison OP.
+ 'n' Print the inverse of the integer branch condition for comparison OP.
'A' Print the atomic operation suffix for memory model OP.
'I' Print the LR suffix for memory model OP.
'J' Print the SC suffix for memory model OP.
@@ -6981,7 +6981,7 @@ riscv_print_operand (FILE *file, rtx op, int letter)
fputs (GET_RTX_NAME (code), file);
break;
- case 'N':
+ case 'n':
/* The RTL names match the instruction names. */
fputs (GET_RTX_NAME (reverse_condition (code)), file);
break;
@@ -3215,7 +3215,7 @@ (define_insn "*branch<mode>"
"!TARGET_XCVBI"
{
if (get_attr_length (insn) == 12)
- return "b%N1\t%2,%z3,1f; jump\t%l0,ra; 1:";
+ return "b%n1\t%2,%z3,1f; jump\t%l0,ra; 1:";
return "b%C1\t%2,%z3,%l0";
}