From patchwork Wed May 28 16:04:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marko Myllynen X-Patchwork-Id: 353527 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3769D14003E for ; Thu, 29 May 2014 02:40:24 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:reply-to:mime-version:to :cc:subject:content-type:content-transfer-encoding; q=dns; s= default; b=If2KYZ7IsYVtK6N6tf2PD7N5ohmoSSbAG/kcrQ0NOG/0UAlstCWfV gFxvnwSaK7kS9NhOxUqf9OugRRUp8uh/TLqReUGiLMvG45se8C9T83wv408nJgCp DRy8KuIoSzQ3+yApgCNduMae5Qq74O1q+uZr17pZEneBZsSFJJEeUs= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:reply-to:mime-version:to :cc:subject:content-type:content-transfer-encoding; s=default; bh=AurhUcffBGHK5kXXq4kIJZRhC7Y=; b=Df83YlmRUYw8mfcauhRwx0JB2mxx dwQnCeQ1/7OFTDkJOoLV9QurRNRSHVAxHQ+FfD+BgQgW1oe1n+wfIcHbZuh78HCA Cccij+J1loRK+aAjrF1sVy20YK8M3H85EZkWEaGEukvPcPraeOaBFlxn5jVuDSKi p1EeO3BT11VAF3k= Received: (qmail 7429 invoked by alias); 28 May 2014 16:40:18 -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 7410 invoked by uid 89); 28 May 2014 16:40:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Message-ID: <538608F4.6010807@redhat.com> Date: Wed, 28 May 2014 19:04:04 +0300 From: Marko Myllynen Reply-To: myllynen@redhat.com User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: GNU C Library CC: "H.J. Lu" Subject: [PATCH] Replace __int128 with __int128_t in sysdeps/x86_64/link-defines.sym Hi, 48332d missed a spot, this patch fixes build on RHEL 6 / x86_64. * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128 with __int128_t. diff --git a/sysdeps/x86_64/link-defines.sym b/sysdeps/x86_64/link-defines.sym index 862fa22..963c69b 100644 --- a/sysdeps/x86_64/link-defines.sym +++ b/sysdeps/x86_64/link-defines.sym @@ -6,7 +6,7 @@ VECTOR_SIZE sizeof (La_x86_64_vector) XMM_SIZE sizeof (La_x86_64_xmm) YMM_SIZE sizeof (La_x86_64_ymm) ZMM_SIZE sizeof (La_x86_64_zmm) -BND_SIZE sizeof (__int128) +BND_SIZE sizeof (__int128_t) LR_SIZE sizeof (struct La_x86_64_regs) LR_RDX_OFFSET offsetof (struct La_x86_64_regs, lr_rdx)