view gcc/testsuite/gcc.dg/verbose-asm-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* 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" } } */