aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/rs6000/rs6000.md2
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5222233..7e7b463 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2002-09-21 Alan Modra <amodra@bigpond.net.au>
+ * config/rs6000/rs6000.md (builtin_setjmp_receiver): Add
+ #if TARGET_MACHO.
+
* config/rs6000/rs6000.md (floatdisf2_internal2): Combine
insns. Supply missing clobber of scratch reg.
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index 6d80b0b..2c0a475 100644
--- a/gcc/config/rs6000/rs6000.md
+++ b/gcc/config/rs6000/rs6000.md
@@ -10254,6 +10254,7 @@
|| (DEFAULT_ABI == ABI_DARWIN && flag_pic)"
"
{
+#if TARGET_MACHO
if (DEFAULT_ABI == ABI_DARWIN)
{
char *picbase = machopic_function_base_name ();
@@ -10270,6 +10271,7 @@
emit_insn (gen_macho_correct_pic (picreg, picreg, picrtx, tmplabrtx));
}
else
+#endif
rs6000_emit_load_toc_table (FALSE);
DONE;
}")