From patchwork Mon Feb 4 18:08:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janis Johnson X-Patchwork-Id: 218020 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 B42F62C02AC for ; Tue, 5 Feb 2013 05:09:24 +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=1360606165; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Message-ID:Date:From:Reply-To:User-Agent:MIME-Version: To:Subject:Content-Type:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=rLlyoai51m15NMMad+dd0I9T+A8=; b=labQX4crjSdzOoR erVDgLppZyjza/rQ+t8ZcVbiEvoWpMKMdSfU24qeSaC0J9sd3etgPjrtVKQYuQBx Xl+ByvcJ4RjqGy7TwD8rGKYmSKc/kKB9h8IpwgDG1goQCwupQftJIWrMlNzeisjJ 2mVaQDjpoGytz4H1/qAdFWkhYHmg= 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:Message-ID:Date:From:Reply-To:User-Agent:MIME-Version:To:Subject:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=Z+C+DtbRn/Y97+RXDto+ApCWV27uI7dArGO6/DqWpF3UtbG4h+VKxS45EXrT6f DVyFYyZpQ1aAFzpak0pYo12guNdeby/0ODtdeY0BBJ47JDCMyLBwMa2fwKtCRkwD 9Fvz984nx2apP8f2iCYDGJ5Ab6suJ8upyB0SIbxhj8c+Y=; Received: (qmail 21032 invoked by alias); 4 Feb 2013 18:09:08 -0000 Received: (qmail 20983 invoked by uid 22791); 4 Feb 2013 18:09:07 -0000 X-SWARE-Spam-Status: No, hits=-3.8 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, TW_VF X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 04 Feb 2013 18:09:00 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1U2QTS-0001eT-TE from Janis_Johnson@mentor.com for gcc-patches@gcc.gnu.org; Mon, 04 Feb 2013 10:08:58 -0800 Received: from SVR-ORW-FEM-04.mgc.mentorg.com ([147.34.97.41]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 4 Feb 2013 10:08:58 -0800 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-04.mgc.mentorg.com (147.34.97.41) with Microsoft SMTP Server id 14.1.289.1; Mon, 4 Feb 2013 10:08:57 -0800 Message-ID: <510FF93B.6030601@mentor.com> Date: Mon, 4 Feb 2013 10:08:59 -0800 From: Janis Johnson Reply-To: User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" Subject: [testsuite] commited: fix typo in 4.7 testsuite/lib/target-supports.exp 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 This patch fixes the typo reported in PR testsuite/56206. Checked in as obvious. Janis 2013-02-04 Janis Johnson PR testsuite/56206 * lib/target-supports.exp (check_effective_target_arm_hard_vfp_ok): Fix typo. Index: testsuite/lib/target-supports.exp =================================================================== --- testsuite/lib/target-supports.exp (revision 195723) +++ testsuite/lib/target-supports.exp (working copy) @@ -2061,7 +2061,7 @@ # options. proc check_effective_target_arm_hard_vfp_ok { } { - if { [check_effective_target_arm32] } { + if { [check_effective_target_arm32] && ! [check-flags [list "" { *-*-* } { "-mfloat-abi=*" } { "-mfloat-abi=hard" }]] } { return [check_no_compiler_messages arm_hard_vfp_ok executable { int main() { return 0;}