From patchwork Tue Feb 12 18:28:46 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Buclaw X-Patchwork-Id: 1040769 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-495950-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=gdcproject.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="XqTP93kO"; dkim-atps=neutral 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 43zWQF1Dd3z9s7h for ; Wed, 13 Feb 2019 05:29:08 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=XD+6Mg7eX8dy01ZFUidSAZCZ/GjkuCOOD3880TUOTdFlD6 X//btvy5LaDAdcsxuHl8vbl+oMDrbiMLw4Toedcn7Ik3klI0B+lSrw25wBXYb1MP Q0XUWZYCVZeLDZvpb4tUtoi4FBQqNNFPhSskGofojHUZ2kfcOYBqQ8UspNfCk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=9ICQJrt+5/cfAg/BRpRn+5MXf+0=; b=XqTP93kOOC/xulNKu5Cu iVcRTBuo+Zl1UyWQ3zyVh/4vib+Pst4NEbMXg3EMnHOitL864o2W1QTE5FK4us0z rxxozXE4h7MlbGTCbzPRTVeo0JghSrNDkBCx/slxXnw6cnkAAFPUtce8CdPuC9z8 jbeo8y0gyzYBfiYbn7zdxmg= Received: (qmail 97965 invoked by alias); 12 Feb 2019 18:29:01 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 97955 invoked by uid 89); 12 Feb 2019 18:29:00 -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.2 spammy=Despite X-HELO: mail-qt1-f174.google.com Received: from mail-qt1-f174.google.com (HELO mail-qt1-f174.google.com) (209.85.160.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 12 Feb 2019 18:28:59 +0000 Received: by mail-qt1-f174.google.com with SMTP id b8so4105724qtr.9 for ; Tue, 12 Feb 2019 10:28:59 -0800 (PST) MIME-Version: 1.0 From: Iain Buclaw Date: Tue, 12 Feb 2019 19:28:46 +0100 Message-ID: Subject: [PATCH, libphobos] Committed add hppa version in std.experimental.allocator To: gcc-patches X-IsSubscribed: yes Hi, This is a backport from phobos 2.084, the hppa changes that were applied missed adding this one change in allocator/building_blocks/region.d. Bootstrapped and regression tested on x86_64-linux-gnu. Despite not the ended target that's being fixed, only validates that scoping is correct. Committed to trunk as r268810. diff --git a/libphobos/src/MERGE b/libphobos/src/MERGE index aef240e0722..61c42525d44 100644 --- a/libphobos/src/MERGE +++ b/libphobos/src/MERGE @@ -1,4 +1,4 @@ -6c9fb28b0f8813d41798202a9d19c6b37ba5da5f +791c5d2407e500bb4e777d6a90fc96cf250ba2f6 The first line of this file holds the git revision number of the last merge done from the dlang/phobos repository. diff --git a/libphobos/src/std/experimental/allocator/building_blocks/region.d b/libphobos/src/std/experimental/allocator/building_blocks/region.d index 80157aee7e6..dfcecce72bd 100644 --- a/libphobos/src/std/experimental/allocator/building_blocks/region.d +++ b/libphobos/src/std/experimental/allocator/building_blocks/region.d @@ -387,6 +387,7 @@ struct InSituRegion(size_t size, size_t minAlign = platformAlignment) else version (X86_64) enum growDownwards = Yes.growDownwards; else version (ARM) enum growDownwards = Yes.growDownwards; else version (AArch64) enum growDownwards = Yes.growDownwards; + else version (HPPA) enum growDownwards = No.growDownwards; else version (PPC) enum growDownwards = Yes.growDownwards; else version (PPC64) enum growDownwards = Yes.growDownwards; else version (MIPS32) enum growDownwards = Yes.growDownwards;