summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/verbose-asm-2.c
blob: 747bff1875e21672b8ce83b28ab818720708e1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Ensure that the -fverbose-asm leads to source code information in the generated asm.  */
/* { dg-options "-fverbose-asm" } */

int test (int n)
{
  int i;
  int total = 0;

  for (i = 0; i < n; i++)
    total += i * i;

  return total;
}

/* { dg-final { scan-assembler "total = 0" } } */