mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 15:11:15 +08:00
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:
parent
624d3e5760
commit
2bf1730836
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user