From 034f16cd3195850629666c0d03bd06171a774099 Mon Sep 17 00:00:00 2001 From: mrs Date: Tue, 20 Dec 2005 23:46:18 +0000 Subject: [PATCH] * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Handle the ambiguity between -seg_addr_table and -seg_addr_table_filename. (WORD_SWITCH_TAKES_ARG): Likewise. (LINK_SPEC): Likewise. Radar 3941990 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108876 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 7 +++++++ gcc/config/darwin.h | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0d8c853d3b6..5e2ee0cf281 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2005-12-20 Mike Stump + + * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Handle the + ambiguity between -seg_addr_table and -seg_addr_table_filename. + (WORD_SWITCH_TAKES_ARG): Likewise. + (LINK_SPEC): Likewise. + 2005-12-20 Kenneth Zadeck * cfganal.c (flow_reverse_top_sort_order_compute): diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 757bedc57e1..ad1d051084b 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -123,7 +123,7 @@ Boston, MA 02110-1301, USA. */ { "-segs_read_only_addr", "-Zsegs_read_only_addr" }, \ { "-segs_read_write_addr", "-Zsegs_read_write_addr" }, \ { "-seg_addr_table", "-Zseg_addr_table" }, \ - { "-seg_addr_table_filename", "-Zseg_addr_table_filename" }, \ + { "-seg_addr_table_filename", "-Zfn_seg_addr_table_filename" }, \ { "-filelist", "-Xlinker -filelist -Xlinker" }, \ { "-framework", "-Xlinker -framework -Xlinker" }, \ { "-flat_namespace", "-Zflat_namespace" }, \ @@ -167,7 +167,7 @@ Boston, MA 02110-1301, USA. */ !strcmp (STR, "Zsegs_read_only_addr") ? 1 : \ !strcmp (STR, "Zsegs_read_write_addr") ? 1 : \ !strcmp (STR, "Zseg_addr_table") ? 1 : \ - !strcmp (STR, "Zseg_addr_table_filename") ?1 :\ + !strcmp (STR, "Zfn_seg_addr_table_filename") ? 1 :\ !strcmp (STR, "seg1addr") ? 1 : \ !strcmp (STR, "segprot") ? 3 : \ !strcmp (STR, "sub_library") ? 1 : \ @@ -272,7 +272,7 @@ Boston, MA 02110-1301, USA. */ %{Zsegs_read_only_addr*:-segs_read_only_addr %*} \ %{Zsegs_read_write_addr*:-segs_read_write_addr %*} \ %{Zseg_addr_table*: -seg_addr_table %*} \ - %{Zseg_addr_table_filename*:-seg_addr_table_filename %*} \ + %{Zfn_seg_addr_table_filename*:-seg_addr_table_filename %*} \ %{sub_library*} %{sub_umbrella*} \ %{isysroot*:-syslibroot %*} \ %{twolevel_namespace} %{twolevel_namespace_hints} \ -- 2.11.0