From patchwork Mon Nov 18 09:26:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christophe Lyon X-Patchwork-Id: 1196608 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-513878-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=linaro.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="mtIQXWWp"; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=linaro.org header.i=@linaro.org header.b="y1zCC2UT"; dkim-atps=neutral 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 47GkB04Tdcz9sR8 for ; Mon, 18 Nov 2019 20:27:02 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=SA3F9HuFmYRIVRjygL2e8vcm3id759j7/lFWe+o1UkNT4U oZAoKsrfBYtSioXc6RqdN/RvjktEOmWpmjC+q8mLvecdlKbi4R21yPDYmy+m3Uh8 Nrv000p7X2hthACquIgi6/+zMefbHzi5PNeC7WIxkKnOAVyFWKLJh9i0zEA5Q= 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 :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=FJ360Wvk5kfwNH7IdIyxR5vkqEQ=; b=mtIQXWWp6cQF+TSHX3gR kaSeB+GwbcuQnMuPFr4bEy3SI47Dty/V+HPMYhHT+9ypBwCK1+j5tudYCj6Fl6mw T5I6GOuGGGy9QrVwZBkfomX3Svy2/WyyvNd/97NjKyoq2bz76b1KPJx5OcwpSY/T 5fJrBXKjN8kziHzw3KwACTE= Received: (qmail 25117 invoked by alias); 18 Nov 2019 09:26: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 25107 invoked by uid 89); 18 Nov 2019 09:26:55 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-9.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-lf1-f53.google.com Received: from mail-lf1-f53.google.com (HELO mail-lf1-f53.google.com) (209.85.167.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 18 Nov 2019 09:26:54 +0000 Received: by mail-lf1-f53.google.com with SMTP id l28so3713837lfj.1 for ; Mon, 18 Nov 2019 01:26:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:from:date:message-id:subject:to; bh=eeALp5tz1c5Zrpj/M9I4dwmPP2utOk6a2fDObfNjIUU=; b=y1zCC2UTNGc2W0CMy/sMohhaiV0LI74DMzRUijVp96c7JsiH0Vy3/lO+N7YN2RN3aS ig39GjfKMvBU/UOuP7uQ29CtrQktdrwHw79OV0WqSs6FdpwhQTdSWCg901GF/mPB9Wbd z1v7lQsxVQ9bgT0RyG4OZIo4ArTNSu8lYB7rwnMra/MZ4s9oVgflVYDqbdH2wvz7deeP 4fNNukjlkTyqEJSytQNY4l+B9Qj8RLvn1Zqbg7JJcNHGnZHMKnPj+aVLT4vu6yy7CpDD Av5NpURYeOIMVlbUVJqBWa/oEusXIYwnuM0J5pjUEd+Ux7uqsS1kZIqTvAjRoJWziAuU 5o0g== MIME-Version: 1.0 From: Christophe Lyon Date: Mon, 18 Nov 2019 10:26:37 +0100 Message-ID: Subject: [Committed][testsuite][ARM] check_effective_target_arm_vfp_ok_nocache: Fix typo in option name To: gcc Patches X-IsSubscribed: yes Hi, I've committed this small patch as obvious (r278390). It fixes a typo in check_effective_target_arm_vfp_ok_nocache, which used -mpu=vfp instead of -mfpu=vfp. I also changed the name of the sample test from arm_fp_ok to arm_vfp_ok to match the effective target name, and make it easier to analyze logs. Christophe 2019-11-18 Christophe Lyon * lib/target-supports.exp (check_effective_target_arm_vfp_ok_nocache): Fix typo in option name. Index: gcc/testsuite/lib/target-supports.exp =================================================================== --- gcc/testsuite/lib/target-supports.exp (revision 278389) +++ gcc/testsuite/lib/target-supports.exp (revision 278390) @@ -3496,8 +3496,8 @@ global et_arm_vfp_flags set et_arm_vfp_flags "" if { [check_effective_target_arm32] } { - foreach flags {"-mfpu=vfp" "-mfpu=vfp -mfloat-abi=softfp" "-mpu=vfp -mfloat-abi=hard"} { - if { [check_no_compiler_messages_nocache arm_fp_ok object { + foreach flags {"-mfpu=vfp" "-mfpu=vfp -mfloat-abi=softfp" "-mfpu=vfp -mfloat-abi=hard"} { + if { [check_no_compiler_messages_nocache arm_vfp_ok object { #ifndef __ARM_FP #error __ARM_FP not defined #endif