diff options
author | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-30 14:33:40 +0000 |
---|---|---|
committer | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-30 14:33:40 +0000 |
commit | 2e0232350db7861c889065652f31f9b7e282fa5c (patch) | |
tree | cb218db4c848376988a3dee29252a29a18318f3a /gcc | |
parent | 2e6614510ab3fb9b079986ea25e4b04363dcc7d0 (diff) | |
download | gcc-2e0232350db7861c889065652f31f9b7e282fa5c.tar.gz |
PR other/44034
* config/darwin.c (darwin_override_options): Use renamed
targetm.asm_out.emit_unwind_label.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161606 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/darwin.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ee0756b6f9..7e61a630fc3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-06-30 Iain Sandoe <iains@gcc.gnu.org> + + PR other/44034 + * config/darwin.c (darwin_override_options): Use renamed + targetm.asm_out.emit_unwind_label. + 2010-06-30 Bernd Schmidt <bernds@codesourcery.com> PR tree-optimization/39799 diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 1adff12ea73..5801e431dfd 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -1864,7 +1864,7 @@ darwin_override_options (void) /* Disable -freorder-blocks-and-partition for darwin_emit_unwind_label. */ if (flag_reorder_blocks_and_partition - && (targetm.asm_out.unwind_label == darwin_emit_unwind_label)) + && (targetm.asm_out.emit_unwind_label == darwin_emit_unwind_label)) { inform (input_location, "-freorder-blocks-and-partition does not work with exceptions " |