summaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2011-07-26 00:57:55 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2011-07-26 00:57:55 +0000
commitf927e607d8bd0d6569445abdf260a501636c0530 (patch)
tree34f5674c3fbdbc8a5f32cc6428986681c718c4d5 /gcc/final.c
parent5374acd132b19d6ac2aed9fff9b2fe5484e5452a (diff)
downloadgcc-f927e607d8bd0d6569445abdf260a501636c0530.tar.gz
* insn-notes.def (NOTE_INSN_CFA_RESTORE_STATE): Remove.
* final.c (final_scan_insn): Don't test for it. (rest_of_clean_state): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176779 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r--gcc/final.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 3416955d7ee..1d80adffc48 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -1977,9 +1977,6 @@ final_scan_insn (rtx insn, FILE *file, int optimize_p ATTRIBUTE_UNUSED,
targetm.asm_out.function_begin_epilogue (file);
break;
- case NOTE_INSN_CFA_RESTORE_STATE:
- break;
-
case NOTE_INSN_CFI:
dwarf2out_emit_cfi (NOTE_CFI (insn));
break;
@@ -4373,8 +4370,7 @@ rest_of_clean_state (void)
(NOTE_KIND (insn) != NOTE_INSN_VAR_LOCATION
&& NOTE_KIND (insn) != NOTE_INSN_CALL_ARG_LOCATION
&& NOTE_KIND (insn) != NOTE_INSN_BLOCK_BEG
- && NOTE_KIND (insn) != NOTE_INSN_BLOCK_END
- && NOTE_KIND (insn) != NOTE_INSN_CFA_RESTORE_STATE)))
+ && NOTE_KIND (insn) != NOTE_INSN_BLOCK_END)))
print_rtl_single (final_output, insn);
}