From patchwork Thu Jun 26 09:03:33 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nick Clifton X-Patchwork-Id: 364314 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 9B8201400AB for ; Thu, 26 Jun 2014 19:03:47 +1000 (EST) 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=Qy4nnrvUqFjHb0Gb3jYx3+vLE8vsk/ODIZdR+ykVN215InTGU3QDO icx4PqlRdXTwocjBva+HZgnXVHZlAz6EH0Pe9hTLT8b3GzpUpsXBnOz7tlWvbb/L mrBL5+bxRTe/73acVunV5I8qAtH+31S3TlKcF4A6E3VQrhnqkhtbic= 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=/SyQAZa8By6Cx8cidShx698DJ5Q=; b=rbfd1RRq5/l+D/8ZIt/S LhEb4DtZLK09VrCWsjWex5onMuIF6QdPXJD3HlWHY9g/vs2q8q5Ryfz1M4fdntK5 IsYadqG8g6c8GNtJKTv85ESxSTLPE3p2OFuVzjLU/VuJPrM7QQSeEoqFIyqLM3pC AUeYt+I42C6RSvDlmQnKI88= Received: (qmail 3626 invoked by alias); 26 Jun 2014 09:03:40 -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 3606 invoked by uid 89); 26 Jun 2014 09:03:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL, BAYES_00, SPF_HELO_PASS, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 26 Jun 2014 09:03:37 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5Q93Z0A020389 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 26 Jun 2014 05:03:36 -0400 Received: from littlehelper.redhat.com (vpn1-4-85.ams2.redhat.com [10.36.4.85]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s5Q93X21001300 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO) for ; Thu, 26 Jun 2014 05:03:35 -0400 From: Nick Clifton To: gcc-patches@gcc.gnu.org Subject: Commit: Testsuite: Fix typo in proc check_effective_target_trapping Date: Thu, 26 Jun 2014 10:03:33 +0100 Message-ID: <874mz8qbyy.fsf@redhat.com> MIME-Version: 1.0 X-IsSubscribed: yes Hi Guys, I am applying the patch below as an obvious fix for a typo in the check_effective_target_trapping proc in the testsuite's target-supports.exp file. Cheers Nick gcc/testsuite/ChangeLog 2014-06-26 Nick Clifton * lib/target-supports.exp (check_effective_target_trapping): Fix typo. Index: testsuite/lib/target-supports.exp =================================================================== --- testsuite/lib/target-supports.exp (revision 212014) +++ testsuite/lib/target-supports.exp (working copy) @@ -706,7 +706,7 @@ # Return 1 if trapping arithmetic is available, 0 otherwise. proc check_effective_target_trapping {} { - return [check_no_compiler_messages scheduling object { + return [check_no_compiler_messages trapping object { add (int a, int b) { return a + b; } } "-ftrapv"] }