From patchwork Tue Oct 9 17:52:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Kosnik X-Patchwork-Id: 190390 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]) by ozlabs.org (Postfix) with SMTP id C7CB42C0083 for ; Wed, 10 Oct 2012 04:52:53 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1350409975; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:From:To:Subject:Message-ID:Mime-Version:Content-Type: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=cLvd/KQygpzi2rUWeX0q 2w32JVU=; b=m27DoRzb93SLbeBj5Uym90vZ2H+HCPgUuYgKA4mkC8VXCc1oA6zp zny59O9c4ZeL9lJbiXet5YN0gc9CTBYVhkUQN360Ur4qXWlFti3rkIlHQ1jqcGmu 4mk2vni5aHEdX/1UX5Y4GGSn3q7tZj/7B0YXdBPjQ0GfA2/t6/6eMlI= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Date:From:To:Subject:Message-ID:Mime-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=SiOtYtgGJ77e3GvuFIV82U+MiWlBs2fejwtsqEXsGwTG7uZTUIJIhO/OVlxEPN UapAi/2ajRkQ4vMaecN1855AymN/fMzzkGmvrGNLyRFtZCFjBy6OFaBGi3J+Yqln rRMbSNwdgyy9YLRuKjz6XN/oWVkjoAA9UMOnBzQGr9GL8=; Received: (qmail 3051 invoked by alias); 9 Oct 2012 17:52:49 -0000 Received: (qmail 3035 invoked by uid 22791); 9 Oct 2012 17:52:47 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, KHOP_SPAMHAUS_DROP, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, RP_MATCHES_RCVD, SPF_HELO_PASS, URI_HEX X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 09 Oct 2012 17:52:43 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q99HqgJj013991 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 9 Oct 2012 13:52:42 -0400 Received: from coso (ovpn-113-163.phx2.redhat.com [10.3.113.163]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q99Hqghv011951; Tue, 9 Oct 2012 13:52:42 -0400 Date: Tue, 9 Oct 2012 10:52:41 -0700 From: Benjamin De Kosnik To: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: [v3] testsuite patchlet Message-ID: <20121009105241.0c73e68a@coso> Mime-Version: 1.0 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 Small fix for 32 bit targets. -benjamin 2012-10-09 Benjamin Kosnik * testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc: Fix constant value. diff --git a/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc b/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc index 7ccd8da..c86f430 100644 --- a/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc +++ b/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc @@ -27,7 +27,7 @@ struct c c(const c &r) : m(r.m) {} template - explicit c(T &o) : m((void*)0xdeadfbeef) { } + explicit c(T &o) : m((void*)0xdeadbeef) { } }; int main()