Fix ia64 mask bit conflict from parallel development.
authorJim Wilson <wilson@redhat.com>
Thu, 16 Nov 2000 21:35:16 +0000 (21:35 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Thu, 16 Nov 2000 21:35:16 +0000 (13:35 -0800)
* config/ia64/ia64.h (MASK_INLINE_DIV_LAT, MASK_INLINE_DIV_THR):
Shift masks left by one to avoid conflict.

From-SVN: r37507

gcc/ChangeLog
gcc/config/ia64/ia64.h

index b735f44e3556e536cc048a691d0340538c06377f..1656d0ec837b3c37f28828a185c2f35506965a1b 100644 (file)
@@ -1,5 +1,8 @@
 2000-11-16  Jim Wilson  <wilson@redhat.com>
 
+       * config/ia64/ia64.h (MASK_INLINE_DIV_LAT, MASK_INLINE_DIV_THR):
+       Shift masks left by one to avoid conflict.
+
        * config/ia64/ia64.c (ia64_encode_section_info): Disallow decls with
        DECL_EXTERNAL set.
 
index 1f9250f9370fbb060241e6776776363e88e5a123..3bd66185c04b328c2d0fc2836ec09ecd4a4cf240 100644 (file)
@@ -65,9 +65,9 @@ extern int target_flags;
 
 #define MASK_AUTO_PIC  0x00000400      /* generate automatically PIC */
 
-#define MASK_INLINE_DIV_LAT 0x00000400 /* inline div, min latency.  */
+#define MASK_INLINE_DIV_LAT 0x00000800 /* inline div, min latency.  */
 
-#define MASK_INLINE_DIV_THR 0x00000800 /* inline div, max throughput.  */
+#define MASK_INLINE_DIV_THR 0x00001000 /* inline div, max throughput.  */
 
 #define MASK_DWARF2_ASM 0x40000000     /* test dwarf2 line info via gas.  */