blob: 07ecf4e67981d97207513f8c6e144a509b3a005d [file] [log] [blame]
/* 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" } } */