aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/split-ds-sequence.c
blob: e60270db30407f8daac39da90c8098e5532a9123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-options "isa_rev>=6" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-mcompact-branches=never" } { "" } } */
/* { dg-final { scan-assembler-not "nop" } } */

int
testg2 (int a, int c)
{

  int j = 0;
  do
    {
      j += a;
    }
  while (j < 56);

  j += c;
  return j;

}