From patchwork Thu Jan 5 22:28:07 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Stubbs X-Patchwork-Id: 6073 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 9C18723E07 for ; Thu, 5 Jan 2012 22:28:17 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 893ABA183AF for ; Thu, 5 Jan 2012 22:28:17 +0000 (UTC) Received: by eaac11 with SMTP id c11so947164eaa.11 for ; Thu, 05 Jan 2012 14:28:17 -0800 (PST) Received: by 10.205.120.14 with SMTP id fw14mr1641359bkc.53.1325802497287; Thu, 05 Jan 2012 14:28:17 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.82.144 with SMTP id ac16cs413457bkc; Thu, 5 Jan 2012 14:28:16 -0800 (PST) Received: by 10.68.73.104 with SMTP id k8mr9180914pbv.104.1325802494647; Thu, 05 Jan 2012 14:28:14 -0800 (PST) Received: from relay1.mentorg.com (relay1.mentorg.com. [192.94.38.131]) by mx.google.com with ESMTPS id z4si74454832pbp.172.2012.01.05.14.28.13 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 05 Jan 2012 14:28:14 -0800 (PST) Received-SPF: neutral (google.com: 192.94.38.131 is neither permitted nor denied by best guess record for domain of Andrew_Stubbs@mentor.com) client-ip=192.94.38.131; Authentication-Results: mx.google.com; spf=neutral (google.com: 192.94.38.131 is neither permitted nor denied by best guess record for domain of Andrew_Stubbs@mentor.com) smtp.mail=Andrew_Stubbs@mentor.com Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1RivnA-0006ic-2i from Andrew_Stubbs@mentor.com ; Thu, 05 Jan 2012 14:28:12 -0800 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 5 Jan 2012 14:28:11 -0800 Received: from [172.30.7.243] (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.1.289.1; Thu, 5 Jan 2012 22:28:10 +0000 Message-ID: <4F0623F7.5030703@codesourcery.com> Date: Thu, 5 Jan 2012 22:28:07 +0000 From: Andrew Stubbs User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/20111124 Thunderbird/8.0 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" CC: "patches@linaro.org" Subject: [PATCH][ARM] Fix headmerge testcases X-OriginalArrivalTime: 05 Jan 2012 22:28:11.0750 (UTC) FILETIME=[4EE00060:01CCCBF9] This patch fixes a testcase that fails whenever "120" appears in the date. I first noticed the problem at the start of December, and now I expect it to return and continue until the end of September, if it's not fixed. OK? Andrew 2012-01-05 Andrew Stubbs gcc/testsuite/ * gcc.target/arm/headmerge-2.c: Adjust scan pattern. --- a/gcc/testsuite/gcc.target/arm/headmerge-2.c +++ b/gcc/testsuite/gcc.target/arm/headmerge-2.c @@ -1,6 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-O2" } */ -/* { dg-final { scan-assembler-times "120" 1 } } */ +/* { dg-final { scan-assembler-times "120\n" 1 } } */ extern void foo1 (int); extern void foo2 (int);