Commit c3a77bf9 by Alan Modra Committed by Alan Modra

linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Test target_flags directly rather…

linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Test target_flags directly rather than using TARGET_* defines.

	* config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Test
	target_flags directly rather than using TARGET_* defines.

From-SVN: r74078
parent 0e73769e
2003-12-01 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Test
target_flags directly rather than using TARGET_* defines.
2003-11-30 Ben Elliston <bje@wasabisystems.com> 2003-11-30 Ben Elliston <bje@wasabisystems.com>
* doschk.c: Remove. * doschk.c: Remove.
......
...@@ -74,17 +74,17 @@ ...@@ -74,17 +74,17 @@
rs6000_current_abi = ABI_AIX; \ rs6000_current_abi = ABI_AIX; \
error (INVALID_64BIT, "call"); \ error (INVALID_64BIT, "call"); \
} \ } \
if (TARGET_RELOCATABLE) \ if (target_flags & MASK_RELOCATABLE) \
{ \ { \
target_flags &= ~MASK_RELOCATABLE; \ target_flags &= ~MASK_RELOCATABLE; \
error (INVALID_64BIT, "relocatable"); \ error (INVALID_64BIT, "relocatable"); \
} \ } \
if (TARGET_EABI) \ if (target_flags & MASK_EABI) \
{ \ { \
target_flags &= ~MASK_EABI; \ target_flags &= ~MASK_EABI; \
error (INVALID_64BIT, "eabi"); \ error (INVALID_64BIT, "eabi"); \
} \ } \
if (TARGET_PROTOTYPE) \ if (target_flags & MASK_PROTOTYPE) \
{ \ { \
target_flags &= ~MASK_PROTOTYPE; \ target_flags &= ~MASK_PROTOTYPE; \
error (INVALID_64BIT, "prototype"); \ error (INVALID_64BIT, "prototype"); \
......
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