debug-globals-1.c   [plain text]


/* APPLE LOCAL file 4134283 */
/* Test stabs for uninitialized globals */
/* Contributed by Devang Patel  <dpatel@apple.com>  */

/* { dg-do compile } */
/* { dg-skip-if "No stabs" { mmix-*-* *-*-aix* *-*-netware* alpha*-*-* hppa*64*-*-* ia64-*-* } { "*" } { "" } } */
/* { dg-options "-gstabs+ -O2" } */

static int foo;
int bar;
int main(void)
{
  foo += 3;
  bar *= 5;
  return 0;
}

/* { dg-final { scan-assembler ".stabs.*foo" } } */
/* { dg-final { scan-assembler ".stabs.*bar" } } */