From patchwork Fri Oct 16 19:31:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 531543 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 CC7F91402B2 for ; Sat, 17 Oct 2015 06:32:02 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=Chl9hkAB; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:reply-to:mime-version:content-type; q=dns; s=default; b=f6sn7+JZq6MFXCeJ3sBfemhA6QD5Cnz2PZvvg+C/6da NpJWXwWE/aHkRNpmB0mody2SVj1cUWFs0/ts5ITFNtGRrT5EFx2pv402xRFVnVRb kXpNyvqiq5tKdqEXC9ts7a5PpOi/oLTx6GFkbOzDBJ7xU/LOlXwWKH1gFseAdS58 = 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:date :from:to:subject:message-id:reply-to:mime-version:content-type; s=default; bh=pWliBRLgk7bDmAznOeO2Y+lbPFM=; b=Chl9hkABnOUjxPYEI jVO4HPsKRJMMrudyUm3187HPsjHwtgw7l4SoRCc7S2PuILIM3GWhwLmXsolS+e0H oqq//xMaLnKCOsDXozLB6RLT+by0yBnYk9OolzA33Obs9FWpbfSYFOIji6s0zO5S kznYQgmA01FbB4bKjrNCIhf0F4= Received: (qmail 32575 invoked by alias); 16 Oct 2015 19:31:56 -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 32560 invoked by uid 89); 16 Oct 2015 19:31:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL, BAYES_00, KAM_ASCII_DIVIDERS, KAM_LAZY_DOMAIN_SECURITY, NO_DNS_FOR_FROM, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mga02.intel.com Received: from mga02.intel.com (HELO mga02.intel.com) (134.134.136.20) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 16 Oct 2015 19:31:54 +0000 Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP; 16 Oct 2015 12:31:54 -0700 X-ExtLoop1: 1 Received: from gnu-6.sc.intel.com ([172.25.70.52]) by FMSMGA003.fm.intel.com with ESMTP; 16 Oct 2015 12:31:53 -0700 Received: by gnu-6.sc.intel.com (Postfix, from userid 1000) id 33BA6C3C6C; Fri, 16 Oct 2015 12:31:53 -0700 (PDT) Date: Fri, 16 Oct 2015 12:31:53 -0700 From: "H.J. Lu" To: gcc-patches@gcc.gnu.org Subject: [committed, PATCH] Properly initialize u5 Message-ID: <20151016193153.GA1784@intel.com> Reply-To: "H.J. Lu" MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Index: ChangeLog =================================================================== --- ChangeLog (revision 228920) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2015-10-16 H.J. Lu + + * gcc.target/i386/iamcu/test_passing_unions.c (main): Properly + initialize u5. + 2015-10-16 Eric Botcazou PR middle-end/67966 Index: gcc.target/i386/iamcu/test_passing_unions.c =================================================================== --- gcc.target/i386/iamcu/test_passing_unions.c (revision 228920) +++ gcc.target/i386/iamcu/test_passing_unions.c (working copy) @@ -123,7 +123,7 @@ main (void) struct long_struct ls; #endif /* CHECK_LARGER_UNION_PASSING */ union un4 u4[8]; - union un5 u5 = { { 48.394, 39.3, -397.9, 3484.9 } }; + union un5 u5 = { 48.394 }; int i; union un6 u6;