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
This commit is contained in:
Andreas Jaeger 2003-01-25 23:40:32 +01:00
parent 7821bfc741
commit 21ff35fb7e
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2003-01-25 Andreas Jaeger <aj@suse.de>
* config/i386/i386.c (x86_output_mi_thunk): Correct test for
TARGET_MACHO.
2003-01-25 Roger Sayle <roger@eyesopen.com>
* gcse.c (bypass_last_basic_block): New global variable.
@ -1406,7 +1411,7 @@ Fri Jan 10 22:05:35 CET 2003 Jan Hubicka <jh@suse.cz>
2003-01-10 Hartmut Penner <hpenner@de.ibm.com>
* doc/invoke.texi: Document -mtune, delete -mcpu
* doc/invoke.texi: Document -mtune, delete -mcpu
option for S/390 and zSeries.
* config/s390/s390.c (s390_tune_string) New variable.
(s390_cpu_string) Delete variable.
@ -3591,7 +3596,7 @@ Sun Dec 22 18:23:44 CET 2002 Jan Hubicka <jh@suse.cz>
2002-12-20 Hartmut Penner <hpenner@de.ibm.com>
* doc/invoke.texi: Document -mzarch, -mesa, -mcpu= and -march=
* doc/invoke.texi: Document -mzarch, -mesa, -mcpu= and -march=
option for S/390 and zSeries.
* config/s390/s390.c (s390_cpu, s390_cpu_string, s390_arch,
s390_arch_string): New variables.

View File

@ -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));