i386.c (print_operand): Fix formatting.

* config/i386/i386.c (print_operand) <case 'D'>: Fix formatting.
	(print_operand) <case 'Y'>: Likewise.  Fix a pasto in operand lossage
	diagnostics.

From-SVN: r154033
This commit is contained in:
Jakub Jelinek 2009-11-09 14:37:47 +01:00 committed by Jakub Jelinek
parent 624d3e5760
commit 2bf1730836
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-11-09 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (print_operand) <case 'D'>: Fix formatting.
(print_operand) <case 'Y'>: Likewise. Fix a pasto in operand lossage
diagnostics.
2009-11-08 H.J. Lu <hongjiu.lu@intel.com>
* collect2.c (main): Search PLUGIN_LD for plugin linker.

View File

@ -11597,7 +11597,8 @@ print_operand (FILE *file, rtx x, int code)
fputs ("ord", file);
break;
default:
output_operand_lossage ("operand is not a condition code, invalid operand code 'D'");
output_operand_lossage ("operand is not a condition code, "
"invalid operand code 'D'");
return;
}
}
@ -11636,7 +11637,8 @@ print_operand (FILE *file, rtx x, int code)
fputs ("ord", file);
break;
default:
output_operand_lossage ("operand is not a condition code, invalid operand code 'D'");
output_operand_lossage ("operand is not a condition code, "
"invalid operand code 'D'");
return;
}
}
@ -11810,7 +11812,8 @@ print_operand (FILE *file, rtx x, int code)
fputs ("une", file);
break;
default:
output_operand_lossage ("operand is not a condition code, invalid operand code 'D'");
output_operand_lossage ("operand is not a condition code, "
"invalid operand code 'Y'");
return;
}
return;