Commit 239e68f6 by Jim Wilson Committed by Jim Wilson

Fix m68k-motorola-sysv (aka delta) build failure for Manfred Hollstein.

	* m68k/m68k.h (TARGET_SWITCHES): For 68000, 68302, subtract MASK_68881.
	For 68303, 68332, cpu32, subtract MASK_68040_ONLY.

From-SVN: r15138
parent db7cafb0
Sun Sep 7 18:44:50 1997 Jim Wilson <wilson@cygnus.com>
* m68k/m68k.h (TARGET_SWITCHES): For 68000, 68302, subtract MASK_68881.
For 68303, 68332, cpu32, subtract MASK_68040_ONLY.
Sun Sep 7 14:19:39 1997 Jeffrey A Law (law@cygnus.com) Sun Sep 7 14:19:39 1997 Jeffrey A Law (law@cygnus.com)
* version.c: Bump for snapshot. * version.c: Bump for snapshot.
......
...@@ -135,9 +135,9 @@ extern int target_flags; ...@@ -135,9 +135,9 @@ extern int target_flags;
{ "68020", (MASK_68020|MASK_BITFIELD)}, \ { "68020", (MASK_68020|MASK_BITFIELD)}, \
{ "c68020", (MASK_68020|MASK_BITFIELD)}, \ { "c68020", (MASK_68020|MASK_BITFIELD)}, \
{ "68000", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \ { "68000", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \
|MASK_68020|MASK_BITFIELD)}, \ |MASK_68020|MASK_BITFIELD|MASK_68881)}, \
{ "c68000", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \ { "c68000", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \
|MASK_68020|MASK_BITFIELD)}, \ |MASK_68020|MASK_BITFIELD|MASK_68881)}, \
{ "bitfield", MASK_BITFIELD}, \ { "bitfield", MASK_BITFIELD}, \
{ "nobitfield", - MASK_BITFIELD}, \ { "nobitfield", - MASK_BITFIELD}, \
{ "rtd", MASK_RTD}, \ { "rtd", MASK_RTD}, \
...@@ -169,10 +169,13 @@ extern int target_flags; ...@@ -169,10 +169,13 @@ extern int target_flags;
{ "5200", (MASK_5200)}, \ { "5200", (MASK_5200)}, \
{ "68851", 0}, \ { "68851", 0}, \
{ "no-68851", 0}, \ { "no-68851", 0}, \
{ "68302", - (MASK_5200|MASK_68060|MASK_68040|MASK_68020|MASK_BITFIELD)}, \ { "68302", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \
{ "68332", - (MASK_5200|MASK_68060|MASK_68040|MASK_BITFIELD)}, \ MASK_68020|MASK_BITFIELD|MASK_68881)}, \
{ "68332", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \
|MASK_BITFIELD)}, \
{ "68332", MASK_68020}, \ { "68332", MASK_68020}, \
{ "cpu32", - (MASK_5200|MASK_68060|MASK_68040|MASK_BITFIELD)}, \ { "cpu32", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY \
|MASK_BITFIELD)}, \
{ "cpu32", MASK_68020}, \ { "cpu32", MASK_68020}, \
{ "align-int", MASK_ALIGN_INT }, \ { "align-int", MASK_ALIGN_INT }, \
{ "no-align-int", -MASK_ALIGN_INT }, \ { "no-align-int", -MASK_ALIGN_INT }, \
......
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