Fix ia64 mask bit conflict from parallel development.

* config/ia64/ia64.h (MASK_INLINE_DIV_LAT, MASK_INLINE_DIV_THR):
	Shift masks left by one to avoid conflict.

From-SVN: r37507
This commit is contained in:
Jim Wilson 2000-11-16 21:35:16 +00:00 committed by Jim Wilson
parent 3cd22508eb
commit 35d9f39dea
2 changed files with 5 additions and 2 deletions

View 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.

View 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. */