All of lore.kernel.org
 help / color / mirror / Atom feed
From: "H. J. Lu" <hjl@lucon.org>
To: linux-ia64@vger.kernel.org
Subject: PATCH: 2.6: Fix END(memcpy)
Date: Fri, 18 Mar 2005 22:32:50 +0000	[thread overview]
Message-ID: <20050318223250.GA2992@lucon.org> (raw)

The new assembler doesn't like

	.proc memcpy
	.proc __copy_user
	.endp memcpy
	.endp __copy_user

This patch changes it to

	.proc memcpy
	.endp memcpy
	.proc __copy_user
	.endp __copy_user


H.J.
-----
--- linux-2.6.9/arch/ia64/lib/memcpy_mck.S.endp	2004-10-18 14:54:08.000000000 -0700
+++ linux-2.6.9/arch/ia64/lib/memcpy_mck.S	2005-03-18 14:10:23.627318625 -0800
@@ -84,6 +84,7 @@ GLOBAL_ENTRY(memcpy)
 	mov	f6ð
 	br.cond.sptk .common_code
 	;;
+END(memcpy)
 GLOBAL_ENTRY(__copy_user)
 	.prologue
 // check dest alignment
@@ -533,7 +534,6 @@ EK(.ex_handler,  (p17)	st8	[dst1]=r39,8)
 #undef B
 #undef C
 #undef D
-END(memcpy)
 
 /*
  * Due to lack of local tag support in gcc 2.x assembler, it is not clear which

                 reply	other threads:[~2005-03-18 22:32 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20050318223250.GA2992@lucon.org \
    --to=hjl@lucon.org \
    --cc=linux-ia64@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.