From c3a77bf9c646bb2bc35e2b40571dced66fa293de Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sun, 30 Nov 2003 23:43:05 +0000 Subject: 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 --- gcc/config/rs6000/linux64.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/config/rs6000/linux64.h') diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h index 63471ea7b1f..338143c2dfc 100644 --- a/gcc/config/rs6000/linux64.h +++ b/gcc/config/rs6000/linux64.h @@ -74,17 +74,17 @@ rs6000_current_abi = ABI_AIX; \ error (INVALID_64BIT, "call"); \ } \ - if (TARGET_RELOCATABLE) \ + if (target_flags & MASK_RELOCATABLE) \ { \ target_flags &= ~MASK_RELOCATABLE; \ error (INVALID_64BIT, "relocatable"); \ } \ - if (TARGET_EABI) \ + if (target_flags & MASK_EABI) \ { \ target_flags &= ~MASK_EABI; \ error (INVALID_64BIT, "eabi"); \ } \ - if (TARGET_PROTOTYPE) \ + if (target_flags & MASK_PROTOTYPE) \ { \ target_flags &= ~MASK_PROTOTYPE; \ error (INVALID_64BIT, "prototype"); \ -- cgit v1.2.1