Commit 2bf17308 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 624d3e57
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> 2009-11-08 H.J. Lu <hongjiu.lu@intel.com>
* collect2.c (main): Search PLUGIN_LD for plugin linker. * collect2.c (main): Search PLUGIN_LD for plugin linker.
...@@ -11597,7 +11597,8 @@ print_operand (FILE *file, rtx x, int code) ...@@ -11597,7 +11597,8 @@ print_operand (FILE *file, rtx x, int code)
fputs ("ord", file); fputs ("ord", file);
break; break;
default: 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; return;
} }
} }
...@@ -11636,7 +11637,8 @@ print_operand (FILE *file, rtx x, int code) ...@@ -11636,7 +11637,8 @@ print_operand (FILE *file, rtx x, int code)
fputs ("ord", file); fputs ("ord", file);
break; break;
default: 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; return;
} }
} }
...@@ -11810,7 +11812,8 @@ print_operand (FILE *file, rtx x, int code) ...@@ -11810,7 +11812,8 @@ print_operand (FILE *file, rtx x, int code)
fputs ("une", file); fputs ("une", file);
break; break;
default: 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;
} }
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment