diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-09 13:37:47 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-09 13:37:47 +0000 |
commit | 01df368cc5bc88b328b467d876dbe94a24c0a74c (patch) | |
tree | 06ce245bb6b8d22c3a7ae63bcd079bc8e6f10c7b | |
parent | eb393267b60b30b05c4799f226ec2e630089a261 (diff) | |
download | gcc-01df368cc5bc88b328b467d876dbe94a24c0a74c.tar.gz |
* config/i386/i386.c (print_operand) <case 'D'>: Fix formatting.
(print_operand) <case 'Y'>: Likewise. Fix a pasto in operand lossage
diagnostics.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154033 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9e6fb69e504..8301826b092 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index da7e8f93eef..8630640ef52 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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; |