OSDN Git Service

* config/i386/i386.c (print_operand) <case 'D'>: Fix formatting.
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Nov 2009 13:37:47 +0000 (13:37 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Nov 2009 13:37:47 +0000 (13:37 +0000)
(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

gcc/ChangeLog
gcc/config/i386/i386.c

index 9e6fb69..8301826 100644 (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.
 2009-11-08  H.J. Lu  <hongjiu.lu@intel.com>
 
        * collect2.c (main): Search PLUGIN_LD for plugin linker.
index da7e8f9..8630640 100644 (file)
@@ -11597,7 +11597,8 @@ print_operand (FILE *file, rtx x, int code)
                  fputs ("ord", file);
                  break;
                default:
                  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;
                }
            }
                  return;
                }
            }
@@ -11636,7 +11637,8 @@ print_operand (FILE *file, rtx x, int code)
                  fputs ("ord", file);
                  break;
                default:
                  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;
                }
            }
                  return;
                }
            }
@@ -11810,7 +11812,8 @@ print_operand (FILE *file, rtx x, int code)
              fputs ("une", file);
              break;
            default:
              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;
              return;
            }
          return;