From patchwork Fri Jul 20 22:25:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans-Peter Nilsson X-Patchwork-Id: 172381 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 757212C03CC for ; Sat, 21 Jul 2012 08:25:49 +1000 (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=1343427951; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Received:Received:Received:Date:Message-Id:From:To: Subject:MIME-Version:Content-Type:Content-Transfer-Encoding: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=dhOJu4WYFoMo/AdIVPAf rjTmGaY=; b=KNMvtjAcEY2gsrG+NXkswA6DfNTa9fzctSUHjAI8q47plzwsmrVt iEwo1TUfXf1y6B2annskDoq9cJE/jSoR115scoyht+IIPEKyW1FF8LEpuyPKi0e9 4Itds7tNk7XrkTHq5/8PK2Km5htzFvMToMg9nnz42V0f8PwthnsM4wk= 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:Received:Received:Received:Received:Date:Message-Id:From:To:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=j3yDQ4/xX/WxrIgf+XtiU5XQKBQ2EQ9PwE4UR8Khb7ntnkuBp1noiwmftq999/ inkWadEh7ZfBDal6CFBtg4GeUWO2lSXZqCTH3MDjdbxRNKurRSeyA5V8NG3OYPM8 uf7H5iX4mFShjgDUGPsu6YcXDZ+8EmH+5AD98k7QwQANI=; Received: (qmail 7955 invoked by alias); 20 Jul 2012 22:25:46 -0000 Received: (qmail 7919 invoked by uid 22791); 20 Jul 2012 22:25:44 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL, BAYES_00, RCVD_IN_HOSTKARMA_NO, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from anubis.se.axis.com (HELO anubis.se.axis.com) (195.60.68.12) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 20 Jul 2012 22:25:31 +0000 Received: from localhost (localhost [127.0.0.1]) by anubis.se.axis.com (Postfix) with ESMTP id 954D519DFC for ; Sat, 21 Jul 2012 00:25:30 +0200 (CEST) Received: from anubis.se.axis.com ([127.0.0.1]) by localhost (anubis.se.axis.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id qVms1EKEdrpL for ; Sat, 21 Jul 2012 00:25:30 +0200 (CEST) Received: from seth.se.axis.com (seth.se.axis.com [10.0.2.172]) by anubis.se.axis.com (Postfix) with ESMTP id 15E2219DF1 for ; Sat, 21 Jul 2012 00:25:30 +0200 (CEST) Received: from ignucius.se.axis.com (ignucius.se.axis.com [10.88.21.50]) by seth.se.axis.com (Postfix) with ESMTP id 0B0923E0DD; Sat, 21 Jul 2012 00:25:30 +0200 (CEST) Received: from ignucius.se.axis.com (localhost [127.0.0.1]) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) with ESMTP id q6KMPTd0022604; Sat, 21 Jul 2012 00:25:29 +0200 Received: (from hp@localhost) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) id q6KMPTrJ022600; Sat, 21 Jul 2012 00:25:29 +0200 Date: Sat, 21 Jul 2012 00:25:29 +0200 Message-Id: <201207202225.q6KMPTrJ022600@ignucius.se.axis.com> From: Hans-Peter Nilsson To: gcc-patches@gcc.gnu.org Subject: Yet another gcc.c-torture/execute/20101011-1.c DO_TEST 0 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 The #elif defined ... #define DO_TEST 0 exceptions are accumulating. Maybe the DO_TEST = 1 case should be the exception... Committed. gcc/testsuite: * gcc.c-torture/execute/20101011-1.c (DO_TEST): Define as 0 for CRIS. brgds, H-P Index: gcc.c-torture/execute/20101011-1.c =================================================================== --- gcc.c-torture/execute/20101011-1.c (revision 189727) +++ gcc.c-torture/execute/20101011-1.c (working copy) @@ -36,6 +36,9 @@ /* Attempting to trap division-by-zero in this way isn't likely to work on bare-metal m68k systems. */ # define DO_TEST 0 +#elif defined (__CRIS__) + /* No SIGFPE for CRIS integer division. */ +# define DO_TEST 0 #else # define DO_TEST 1 #endif