mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
* gencode.c (process_instructions): Correct handling of nor
instruction.
This commit is contained in:
@@ -1240,7 +1240,7 @@ process_instructions(doarch,features)
|
||||
break ;
|
||||
|
||||
case OR:
|
||||
printf(" GPR[destreg] = (%sop1 | op2);\n",((MIPS_DECODE[loop].flags & NOT) ? "~" : ""));
|
||||
printf(" GPR[destreg] = %s(op1 | op2);\n",((MIPS_DECODE[loop].flags & NOT) ? "~" : ""));
|
||||
break ;
|
||||
|
||||
case XOR:
|
||||
|
||||
Reference in New Issue
Block a user