]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2011-05-12 Quentin Neill <quentin.neill@amd.com>
authorQuentin Neill <quentin.neill@amd.com>
Thu, 12 May 2011 22:29:06 +0000 (22:29 +0000)
committerQuentin Neill <quentin.neill@amd.com>
Thu, 12 May 2011 22:29:06 +0000 (22:29 +0000)
      * config/tc-i386.c (cpu_arch): Rename PROCESSOR_BDVER1 to PROCESSOR_BD.
      (i386_align_code): Ditto

gas/ChangeLog
gas/config/tc-i386.c
gas/config/tc-i386.h

index 61843faef9acf3a11a64a69ae2175b5a17231553..210b321be6234889b0df5e4e2650d1f62724778b 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-12  Quentin Neill  <quentin.neill@amd.com>
+
+       * config/tc-i386.c (cpu_arch): Rename PROCESSOR_BDVER1 to PROCESSOR_BD.
+       (i386_align_code): Ditto
+
 2011-05-12  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
 
        PR gas/12715
index d208a0dc044953b02720b8d7400f0f7d5756e8a2..8bbf9db483165f3f57585a6e4f3b6b98cf23050b 100644 (file)
@@ -645,9 +645,9 @@ static const arch_entry cpu_arch[] =
     CPU_K8_FLAGS, 0, 0 },
   { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
     CPU_AMDFAM10_FLAGS, 0, 0 },
-  { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BDVER,
+  { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
     CPU_BDVER1_FLAGS, 0, 0 },
-  { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BDVER,
+  { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
     CPU_BDVER2_FLAGS, 0, 0 },
   { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
     CPU_8087_FLAGS, 0, 0 },
@@ -1025,7 +1025,7 @@ i386_align_code (fragS *fragP, int count)
      PROCESSOR_CORE, PROCESSOR_CORE2, PROCESSOR_COREI7, and
      PROCESSOR_GENERIC64, alt_long_patt will be used.
      3. For PROCESSOR_ATHLON, PROCESSOR_K6, PROCESSOR_K8 and
-     PROCESSOR_AMDFAM10, and PROCESSOR_BDVER, alt_short_patt
+     PROCESSOR_AMDFAM10, and PROCESSOR_BD, alt_short_patt
      will be used.
 
      When -mtune= isn't used, alt_long_patt will be used if
@@ -1078,7 +1078,7 @@ i386_align_code (fragS *fragP, int count)
            case PROCESSOR_ATHLON:
            case PROCESSOR_K8:
            case PROCESSOR_AMDFAM10:
-           case PROCESSOR_BDVER:
+           case PROCESSOR_BD:
              patt = alt_short_patt;
              break;
            case PROCESSOR_I386:
@@ -1107,7 +1107,7 @@ i386_align_code (fragS *fragP, int count)
            case PROCESSOR_ATHLON:
            case PROCESSOR_K8:
            case PROCESSOR_AMDFAM10:
-           case PROCESSOR_BDVER:
+           case PROCESSOR_BD:
            case PROCESSOR_GENERIC32:
              /* We use cpu_arch_isa_flags to check if we CAN optimize
                 with nops.  */
index bbe71e09693469f1b0da6111277d5c71b9f3419a..092e8c69c09914fbc4f7997c14c56b3302fadde3 100644 (file)
@@ -230,7 +230,7 @@ enum processor_type
   PROCESSOR_GENERIC32,
   PROCESSOR_GENERIC64,
   PROCESSOR_AMDFAM10,
-  PROCESSOR_BDVER
+  PROCESSOR_BD
 };
 
 extern enum processor_type cpu_arch_tune;