Commit 89b06540 by Kaveh R. Ghazi Committed by Kaveh Ghazi

darwin-protos.h (darwin_asm_output_dwarf_delta): Prototype.

	* darwin-protos.h (darwin_asm_output_dwarf_delta): Prototype.

	* ia64.c (ia64_hpux_asm_file_end): Const-ify.

From-SVN: r57632
parent 03357c23
2002-09-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* darwin-protos.h (darwin_asm_output_dwarf_delta): Prototype.
* ia64.c (ia64_hpux_asm_file_end): Const-ify.
2002-09-29 John David Anglin <dave@hiauly1.hia.nrc.ca> 2002-09-29 John David Anglin <dave@hiauly1.hia.nrc.ca>
* expmed.c (extract_bit_field): Fix bit-field extraction from SUBREGs. * expmed.c (extract_bit_field): Fix bit-field extraction from SUBREGs.
......
...@@ -116,3 +116,4 @@ extern void machopic_output_stub PARAMS ((FILE *, const char *, const char *)); ...@@ -116,3 +116,4 @@ extern void machopic_output_stub PARAMS ((FILE *, const char *, const char *));
extern void darwin_exception_section PARAMS ((void)); extern void darwin_exception_section PARAMS ((void));
extern void darwin_eh_frame_section PARAMS ((void)); extern void darwin_eh_frame_section PARAMS ((void));
extern void darwin_globalize_label PARAMS ((FILE *, const char *)); extern void darwin_globalize_label PARAMS ((FILE *, const char *));
extern void darwin_asm_output_dwarf_delta PARAMS ((FILE *, int, const char *, const char *));
...@@ -8086,11 +8086,10 @@ ia64_hpux_asm_file_end (file) ...@@ -8086,11 +8086,10 @@ ia64_hpux_asm_file_end (file)
{ {
while (extern_func_head) while (extern_func_head)
{ {
char *real_name; const char *const real_name =
tree decl; (* targetm.strip_name_encoding) (extern_func_head->name);
tree decl = get_identifier (real_name);
real_name = (* targetm.strip_name_encoding) (extern_func_head->name);
decl = get_identifier (real_name);
if (decl && ! TREE_ASM_WRITTEN (decl) && TREE_SYMBOL_REFERENCED (decl)) if (decl && ! TREE_ASM_WRITTEN (decl) && TREE_SYMBOL_REFERENCED (decl))
{ {
TREE_ASM_WRITTEN (decl) = 1; TREE_ASM_WRITTEN (decl) = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment