diff options
author | Iain Sandoe <iains@gcc.gnu.org> | 2010-06-30 14:33:40 +0000 |
---|---|---|
committer | Iain Sandoe <iains@gcc.gnu.org> | 2010-06-30 14:33:40 +0000 |
commit | 8a1dabd598347ac69dbf5dd4239a57150a8e7baf (patch) | |
tree | cb218db4c848376988a3dee29252a29a18318f3a /gcc/config/darwin.c | |
parent | dcad005d5078d4d02963c27920a0810469d7d0f2 (diff) | |
download | gcc-8a1dabd598347ac69dbf5dd4239a57150a8e7baf.tar.gz |
re PR other/44034 (target hooks are hard to maintain)
PR other/44034
* config/darwin.c (darwin_override_options): Use renamed
targetm.asm_out.emit_unwind_label.
From-SVN: r161606
Diffstat (limited to 'gcc/config/darwin.c')
-rw-r--r-- | gcc/config/darwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 " |