2005-11-02 H.J. Lu <hongjiu.lu@intel.com>
[deliverable/binutils-gdb.git] / opcodes / s390-mkopc.c
index 8a326300d78b7ad66859bc094b021e0a777d962c..5a794fdd5dc81906fcff834f6d19641f5943d62c 100644 (file)
@@ -35,7 +35,8 @@ enum s390_opcode_cpu_val
     S390_OPCODE_G5 = 0,
     S390_OPCODE_G6,
     S390_OPCODE_Z900,
-    S390_OPCODE_Z990
+    S390_OPCODE_Z990,
+    S390_OPCODE_Z9_109
   };
 
 struct op_struct
@@ -195,6 +196,8 @@ main (void)
            min_cpu = S390_OPCODE_Z900;
          else if (strcmp (cpu_string, "z990") == 0)
            min_cpu = S390_OPCODE_Z990;
+         else if (strcmp (cpu_string, "z9-109") == 0)
+           min_cpu = S390_OPCODE_Z9_109;
          else {
            fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string);
            exit (1);
This page took 0.02566 seconds and 4 git commands to generate.