From patchwork Fri Nov 16 17:49:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [AArch64] Fix faulty commit of testsuite/gcc.target/aarch64/csinc-2.c Date: Fri, 16 Nov 2012 07:49:28 -0000 From: Ian Bolton X-Patchwork-Id: 199709 Message-Id: <000101cdc422$b975a700$2c60f500$@bolton@arm.com> To: A commit I did earlier in the week got truncated somehow, leading to a broken testcase for AArch64 target. I've just commited this fix as obvious on trunk and the arm/aarch64-4.7-branch. Cheers Ian Index: gcc/testsuite/gcc.target/aarch64/csinc-2.c =================================================================== --- gcc/testsuite/gcc.target/aarch64/csinc-2.c (revision 193571) +++ gcc/testsuite/gcc.target/aarch64/csinc-2.c (revision 193572) @@ -12,3 +12,7 @@ typedef long long s64; s64 foo2 (s64 a, s64 b) +{ + return (a == b) ? 7 : 1; + /* { dg-final { scan-assembler "csinc\tx\[0-9\].*xzr" } } */ +}