Commit 35d9f39d by Jim Wilson Committed by Jim Wilson

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
parent 3cd22508
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.
......
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment