From patchwork Fri Sep 16 11:45:51 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Senthil Kumar Selvaraj X-Patchwork-Id: 670823 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 3sbD6T5YCBz9s9x for ; Fri, 16 Sep 2016 21:47:24 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=RfsHnlJO; 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:from :to:subject:date:message-id:mime-version:content-type; q=dns; s= default; b=gXRXc/In8BpiNCjHtpv3MqE3F948HAZ2bX4ITRuJi7qmwvtG3PEi9 mIFuoe72rpGeLK3uy9+PENwFyl+odOXigwF+MKuYg0PABCSGTilWN3NpM+Ffdleo OO9soDpl1x5KdJSZurkS7hppEUKUbQ8/Z2bcBA3ykZQHgIq2XlJVpw= 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:from :to:subject:date:message-id:mime-version:content-type; s= default; bh=TFviv2OqYAzD83sL2GS9mWq7H2M=; b=RfsHnlJO6h2Q1dvL7YTi hKPfN9yJrdtVoSpcAVViR5CgqI4w4mw6JTDbKCWQBQJ3xVTB/UK3h1F9TKY4LTni 3PUlxQOe42aivwQ64NuHA7wAID1C7uWB/750RNtb7Aqzs75vZ78gnlEJszJs/WDA Z3QIG9/GJP//EQ22zsHHPe4= Received: (qmail 73403 invoked by alias); 16 Sep 2016 11:47:10 -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 73382 invoked by uid 89); 16 Sep 2016 11:47:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=BAYES_05, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=H*F:D*atmel.com, H*M:atmel, Hx-spam-relays-external:14.3.235.1, H*r:0200 X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (208.118.235.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 16 Sep 2016 11:46:59 +0000 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39807) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1bkrbd-0007x4-QS for gcc-patches@gnu.org; Fri, 16 Sep 2016 07:46:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkrbZ-0001fE-DZ for gcc-patches@gnu.org; Fri, 16 Sep 2016 07:46:57 -0400 Received: from eusmtp01.atmel.com ([212.144.249.243]:5118) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkrbZ-0001bo-6c for gcc-patches@gnu.org; Fri, 16 Sep 2016 07:46:53 -0400 Received: from HNOCHT02.corp.atmel.com (10.145.133.41) by eusmtp01.atmel.com (10.145.145.31) with Microsoft SMTP Server (TLS) id 14.3.235.1; Fri, 16 Sep 2016 13:46:41 +0200 Received: from jaguar.atmel.com (10.145.133.18) by HNOCHT02.corp.atmel.com (10.145.133.41) with Microsoft SMTP Server (TLS) id 14.3.235.1; Fri, 16 Sep 2016 13:46:46 +0200 User-agent: mu4e 0.9.17; emacs 24.5.1 From: Senthil Kumar Selvaraj To: gcc-patches Subject: [Patch, testsuite] Require int32plus for pr70421.c Date: Fri, 16 Sep 2016 17:15:51 +0530 Message-ID: <87mvj8hxu8.fsf@atmel.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 X-Received-From: 212.144.249.243 X-IsSubscribed: yes Hi, This patch fixes a bogus testsuite failure for the avr target. The test has integer literals that only fit on targets with int size >= 32. Committed to trunk. Regards Senthil gcc/testsuite/ChangeLog 2016-09-16 Senthil Kumar Selvaraj * gcc.dg/torture/pr70421.c: Require int32plus. Index: gcc.dg/torture/pr70421.c =================================================================== --- gcc.dg/torture/pr70421.c (revision 240004) +++ gcc.dg/torture/pr70421.c (working copy) @@ -1,5 +1,6 @@ /* PR target/70421 */ /* { dg-do run } */ +/* { dg-require-effective-target int32plus } */ /* { dg-additional-options "-Wno-psabi -w" } */ typedef unsigned V __attribute__ ((vector_size (64)));