aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2009-11-09 14:37:47 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2009-11-09 14:37:47 +0100
commit2bf1730836d8cd41cf7cb7ea0434ead847cd0298 (patch)
tree06ce245bb6b8d22c3a7ae63bcd079bc8e6f10c7b
parent624d3e576000fbdd0ccc84f2f3365e6f13efe215 (diff)
downloadgcc-2bf1730836d8cd41cf7cb7ea0434ead847cd0298.zip
gcc-2bf1730836d8cd41cf7cb7ea0434ead847cd0298.tar.gz
gcc-2bf1730836d8cd41cf7cb7ea0434ead847cd0298.tar.bz2
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
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/i386/i386.c9
2 files changed, 12 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9e6fb69..8301826 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 da7e8f9..8630640 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;