From: Ramana Radhakrishnan Date: Wed, 6 Apr 2011 09:41:07 +0000 (+0000) Subject: Fix commit for PR target/43920 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33abfb6bdbc77c99a8b7f79b120f3581ab8b4249;p=gcc.git Fix commit for PR target/43920 From-SVN: r172031 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cb11813f291..a3c8dfd3376 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2011-04-06 Ramana Radhakrishnan + + * gcc.target/arm/pr43920-1.c: Fix accidental duplication. + 2011-04-06 Eric Botcazou * gnat.dg/return3.adb: New test. diff --git a/gcc/testsuite/gcc.target/arm/pr43920-1.c b/gcc/testsuite/gcc.target/arm/pr43920-1.c index 38e254c32be..d673f1e88b1 100644 --- a/gcc/testsuite/gcc.target/arm/pr43920-1.c +++ b/gcc/testsuite/gcc.target/arm/pr43920-1.c @@ -19,24 +19,3 @@ f (int start, int end, int *start_) /* { dg-final { scan-assembler-times "\torr" 0 } } */ /* { dg-final { scan-assembler-times "\tit\t" 0 } } */ /* { dg-final { scan-assembler "\tbeq" } } */ -/* { dg-do compile } */ -/* { dg-options "-mthumb -Os" } */ -/* { dg-require-effective-target arm_thumb2_ok } */ - -int -f (int start, int end, int *start_) -{ - if (start == -1 || end == -1) - return -1; - - if (end - start) - return -1; - - *start_ = start; - - return 0; -} - -/* { dg-final { scan-assembler-times "\torr" 0 } } */ -/* { dg-final { scan-assembler-times "\tit\t" 0 } } */ -/* { dg-final { scan-assembler "\tbeq" } } */