s/.cfi_gnu_window_save/.cfi_window_save/g

This commit is contained in:
Jakub Jelinek
2003-08-29 20:32:56 +00:00
parent 364b6d8b23
commit 6749011bfd
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
2003-08-29 Jakub Jelinek <jakub@redhat.com> 2003-08-29 Jakub Jelinek <jakub@redhat.com>
* dw2gencfi.c (cfi_pseudo_table): Add cfi_gnu_window_save. * dw2gencfi.c (cfi_pseudo_table): Add cfi_window_save.
(dot_cfi, output_cfi_insn): Handle DW_CFA_GNU_window_save. (dot_cfi, output_cfi_insn): Handle DW_CFA_GNU_window_save.
(output_cie): Don't use DW_EH_PE_pcrel if neither DIFF_EXPR_OK (output_cie): Don't use DW_EH_PE_pcrel if neither DIFF_EXPR_OK
nor tc_cfi_emit_pcrel_expr are defined. nor tc_cfi_emit_pcrel_expr are defined.
@ -19,7 +19,7 @@
(sparc_cfi_frame_initial_instructions): New function. (sparc_cfi_frame_initial_instructions): New function.
(sparc_regname_to_dw2regnum): Likewise. (sparc_regname_to_dw2regnum): Likewise.
(sparc_cfi_emit_pcrel_expr): Likewise. (sparc_cfi_emit_pcrel_expr): Likewise.
* doc/as.texinfo: Document .cfi_gnu_window_save. * doc/as.texinfo: Document .cfi_window_save.
* config/tc-sparc.c (s_common): Cast last argument to long and * config/tc-sparc.c (s_common): Cast last argument to long and
change format string to shut up warning. change format string to shut up warning.

View File

@ -4050,7 +4050,7 @@ using the known displacement of the CFA register from the CFA.
This is often easier to use, because the number will match the This is often easier to use, because the number will match the
code it's annotating. code it's annotating.
@section @code{.cfi_gnu_window_save} @section @code{.cfi_window_save}
SPARC register window has been saved. SPARC register window has been saved.
@section @code{.cfi_escape} @var{expression}[, @dots{}] @section @code{.cfi_escape} @var{expression}[, @dots{}]

View File

@ -374,7 +374,7 @@ const pseudo_typeS cfi_pseudo_table[] =
{ "cfi_same_value", dot_cfi, DW_CFA_same_value }, { "cfi_same_value", dot_cfi, DW_CFA_same_value },
{ "cfi_remember_state", dot_cfi, DW_CFA_remember_state }, { "cfi_remember_state", dot_cfi, DW_CFA_remember_state },
{ "cfi_restore_state", dot_cfi, DW_CFA_restore_state }, { "cfi_restore_state", dot_cfi, DW_CFA_restore_state },
{ "cfi_gnu_window_save", dot_cfi, DW_CFA_GNU_window_save }, { "cfi_window_save", dot_cfi, DW_CFA_GNU_window_save },
{ "cfi_escape", dot_cfi_escape, 0 }, { "cfi_escape", dot_cfi_escape, 0 },
{ NULL, NULL, 0 } { NULL, NULL, 0 }
}; };

View File

@ -9,7 +9,7 @@ foo:
.cfi_startproc .cfi_startproc
save %sp, -104, %sp save %sp, -104, %sp
.cfi_def_cfa_register %fp .cfi_def_cfa_register %fp
.cfi_gnu_window_save .cfi_window_save
.cfi_register %o7, %i7 .cfi_register %o7, %i7
add %i0, 1, %o0 add %i0, 1, %o0
call bar, 0 call bar, 0

View File

@ -9,7 +9,7 @@ foo:
.cfi_startproc .cfi_startproc
save %sp, -192, %sp save %sp, -192, %sp
.cfi_def_cfa_register %fp .cfi_def_cfa_register %fp
.cfi_gnu_window_save .cfi_window_save
.cfi_register %o7, %i7 .cfi_register %o7, %i7
add %i0, 1, %o0 add %i0, 1, %o0
add %i0, 2, %i0 add %i0, 2, %i0