From patchwork Mon Oct 22 10:16:53 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 29829 Received: (qmail 82510 invoked by alias); 22 Oct 2018 10:16:59 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 82454 invoked by uid 89); 22 Oct 2018 10:16:57 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy=1124, Hx-languages-length:943, Key X-HELO: mx1.suse.de From: Andreas Schwab To: libc-alpha@sourceware.org Subject: [PATCH] Don't use PSEUDO_END for non-PSEUDO function X-Yow: - if it GLISTENS, gobble it!! Date: Mon, 22 Oct 2018 12:16:53 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 * sysdeps/unix/sysv/linux/riscv/setcontext.S: Use END instead of PSEUDO_END. --- sysdeps/unix/sysv/linux/riscv/setcontext.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/unix/sysv/linux/riscv/setcontext.S b/sysdeps/unix/sysv/linux/riscv/setcontext.S index d676fa9329..ed2c38ef2b 100644 --- a/sysdeps/unix/sysv/linux/riscv/setcontext.S +++ b/sysdeps/unix/sysv/linux/riscv/setcontext.S @@ -94,7 +94,7 @@ LEAF (__setcontext) 99: j __syscall_error -PSEUDO_END (__setcontext) +END (__setcontext) weak_alias (__setcontext, setcontext) LEAF (__start_context) @@ -112,4 +112,4 @@ LEAF (__start_context) jal __setcontext 1: j exit -PSEUDO_END (__start_context) +END (__start_context)