Add the endian reversing versions of load/store instructions;
[deliverable/binutils-gdb.git] / opcodes / s390-mkopc.c
index 1c1803e1c993b0f0145b4b2b0145757e5d2cda05..c2c98de4d530a8ff2babdd3829c8f2c3f7e8f032 100644 (file)
@@ -38,7 +38,9 @@ enum s390_opcode_cpu_val
     S390_OPCODE_Z990,
     S390_OPCODE_Z9_109,
     S390_OPCODE_Z9_EC,
-    S390_OPCODE_Z10
+    S390_OPCODE_Z10,
+    S390_OPCODE_Z196,
+    S390_OPCODE_ZEC12
   };
 
 struct op_struct
@@ -334,17 +336,17 @@ main (void)
       char  opcode[16];
       char  mnemonic[16];
       char  format[16];
-      char  description[64];
+      char  description[80];
       char  cpu_string[16];
       char  modes_string[16];
       int   min_cpu;
       int   mode_bits;
       char  *str;
 
-      if (currentLine[0] == '#')
+      if (currentLine[0] == '#' || currentLine[0] == '\n')
         continue;
       memset (opcode, 0, 8);
-      if (sscanf (currentLine, "%15s %15s %15s \"%[^\"]\" %15s %15s",
+      if (sscanf (currentLine, "%15s %15s %15s \"%79[^\"]\" %15s %15s",
                  opcode, mnemonic, format, description,
                  cpu_string, modes_string) == 6)
        {
@@ -362,6 +364,10 @@ main (void)
            min_cpu = S390_OPCODE_Z9_EC;
          else if (strcmp (cpu_string, "z10") == 0)
            min_cpu = S390_OPCODE_Z10;
+         else if (strcmp (cpu_string, "z196") == 0)
+           min_cpu = S390_OPCODE_Z196;
+         else if (strcmp (cpu_string, "zEC12") == 0)
+           min_cpu = S390_OPCODE_ZEC12;
          else {
            fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string);
            exit (1);
@@ -390,7 +396,10 @@ main (void)
          insertExpandedMnemonic (opcode, mnemonic, format, min_cpu, mode_bits);
        }
       else
-        fprintf (stderr, "Couldn't scan line %s\n", currentLine);
+       {
+         fprintf (stderr, "Couldn't scan line %s\n", currentLine);
+         exit (1);
+       }
     }
 
   dumpTable ();
This page took 0.024222 seconds and 4 git commands to generate.