aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2002-12-12 14:08:21 +0000
committerAndreas Schwab <schwab@suse.de>2002-12-12 14:08:21 +0000
commitb70cf1c666e1725b267cf8ce263e56c3a61faaa6 (patch)
tree71cc88dcb4b91ef9132d64eab3f70b635f16a838
parentc0cbfc6a1cccadcc49cf791260f9bead221d14c6 (diff)
* config/ia64/ia64.c (ia64_hpux_asm_file_end): Fix typo in last
change and some warnings. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@60073 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/ia64/ia64.c7
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 24c758aca8d..724738e1f77 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-12 Andreas Schwab <schwab@suse.de>
+
+ * config/ia64/ia64.c (ia64_hpux_asm_file_end): Fix typo in last
+ change and some warnings.
+
2002-12-12 Kazu Hirata <kazu@cs.umass.edu>
* doc/md.texi (pushm): Fix a typo.
diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c
index 68bbbc87756..10f06665999 100644
--- a/gcc/config/ia64/ia64.c
+++ b/gcc/config/ia64/ia64.c
@@ -8141,13 +8141,14 @@ ia64_hpux_asm_file_end (file)
{
while (extern_func_head)
{
- char *real_name;
+ const char *real_name;
tree decl;
real_name = (* targetm.strip_name_encoding) (extern_func_head->name);
- tree decl = maybe_get_identifier (real_name);
+ decl = maybe_get_identifier (real_name);
- if (!decl || ! TREE_ASM_WRITTEN (decl) && TREE_SYMBOL_REFERENCED (decl))
+ if (!decl
+ || (! TREE_ASM_WRITTEN (decl) && TREE_SYMBOL_REFERENCED (decl)))
{
if (decl)
TREE_ASM_WRITTEN (decl) = 1;