aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@gcc.gnu.org>2003-01-25 23:40:32 +0100
committerAndreas Jaeger <aj@gcc.gnu.org>2003-01-25 23:40:32 +0100
commit21ff35fb7e5b0238b0caacf87e62100df3e1d2b3 (patch)
treed475633c37e8f39451b41191eee0416d99e967c9 /gcc/config
parent7821bfc741f6cdf7044997ce8a9e157920765c1a (diff)
downloadgcc-21ff35fb7e5b0238b0caacf87e62100df3e1d2b3.zip
gcc-21ff35fb7e5b0238b0caacf87e62100df3e1d2b3.tar.gz
gcc-21ff35fb7e5b0238b0caacf87e62100df3e1d2b3.tar.bz2
i386.c (x86_output_mi_thunk): Correct test for TARGET_MACHO.
* config/i386/i386.c (x86_output_mi_thunk): Correct test for TARGET_MACHO. From-SVN: r61801
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/i386/i386.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index fe76c91..c26cc50 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -14810,7 +14810,7 @@ x86_output_mi_thunk (file, thunk, delta, vcall_offset, function)
if (!flag_pic || (*targetm.binds_local_p) (function))
output_asm_insn ("jmp\t%P0", xops);
else
-#if defined TARGET_MACHO
+#if TARGET_MACHO
if (TARGET_MACHO)
{
char *ip = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (function));