2007-03-06 Andreas Krebbel <krebbel1@de.ibm.com>
[deliverable/binutils-gdb.git] / opcodes / s390-mkopc.c
index 5a794fdd5dc81906fcff834f6d19641f5943d62c..9e94f24871dad667eef312cd8bbb15c14999ce86 100644 (file)
@@ -36,7 +36,8 @@ enum s390_opcode_cpu_val
     S390_OPCODE_G6,
     S390_OPCODE_Z900,
     S390_OPCODE_Z990,
-    S390_OPCODE_Z9_109
+    S390_OPCODE_Z9_109,
+    S390_OPCODE_Z9_EC
   };
 
 struct op_struct
@@ -198,6 +199,8 @@ main (void)
            min_cpu = S390_OPCODE_Z990;
          else if (strcmp (cpu_string, "z9-109") == 0)
            min_cpu = S390_OPCODE_Z9_109;
+         else if (strcmp (cpu_string, "z9-ec") == 0)
+           min_cpu = S390_OPCODE_Z9_EC;
          else {
            fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string);
            exit (1);
This page took 0.024704 seconds and 4 git commands to generate.