From patchwork Wed Jan 8 16:15:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 37260 Received: (qmail 10877 invoked by alias); 8 Jan 2020 16:15:42 -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 10825 invoked by uid 89); 8 Jan 2020 16:15:42 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Spam-Relays-External:2607, H*r:2607, H*RU:2607, HContent-Transfer-Encoding:8bit X-HELO: mail-pf1-f170.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=7KNXvgmGFkev7x8O7zbVRo9YdktnhiG1XG741WJCZfY=; b=WLYVNdxB0o/bJyq4dk287BMW18ovSyavVaZ2yE17j9WOnPkFVpp54CAYcvqaTfvQUB 4Cf6NRFQmW6EShAFv6NjGIvZcWACSDHoh3HHgNwgC8B520nU6K/3rRuKGCyyqT1B1sQM qakuDFt2AM8arQxNgap6Vrpea4htKPKhDOQNQNjwcM1imsqignbJEPrzhA+cnmOufzXE sCGgeXqW2C46uWb9NaaEHoJv0IsuDgmW8M2Ppvc333HmzssrZVwEbIZZHxDKwozzvoHG LhLLHiVAEr4Lk0g3H/uOaVPnmQnmhxTuo0/T4WcDdshh4fo1/vUmCU/LKHH5HJJ36VpN CM9Q== Return-Path: From: "H.J. Lu" To: libc-alpha@sourceware.org Subject: V2 [PATCH 2/5] i386/sub_n.S: Add a missing _CET_ENDBR to indirect jump target Date: Wed, 8 Jan 2020 08:15:32 -0800 Message-Id: <20200108161535.6141-3-hjl.tools@gmail.com> In-Reply-To: <20200108161535.6141-1-hjl.tools@gmail.com> References: <20200108161535.6141-1-hjl.tools@gmail.com> MIME-Version: 1.0 Add a missing _CET_ENDBR to indirect jump targe in sysdeps/i386/sub_n.S. Reviewed-by: Adhemerval Zanella --- sysdeps/i386/sub_n.S | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/i386/sub_n.S b/sysdeps/i386/sub_n.S index caac89177b..16ebd9169b 100644 --- a/sysdeps/i386/sub_n.S +++ b/sysdeps/i386/sub_n.S @@ -91,6 +91,7 @@ L(oop): movl (%esi),%eax movl 8(%esi),%eax sbbl 8(%edx),%eax movl %eax,8(%edi) + _CET_ENDBR movl 12(%esi),%eax sbbl 12(%edx),%eax movl %eax,12(%edi)