blob: fd61296b2f1d0c1a58489117fe229150345bc5d0 [file] [log] [blame]
/* Test to make sure the mcaro info includes a start file command for the main source */
/* { dg-do compile } */
/* { dg-options "-g3 -gdwarf -dA -fverbose-asm" } */
/* { dg-final { scan-assembler "Start new file" } } */
#define ADD(x) (M + x)
int main (void)
{
#define N 28
#define M 42
return ADD(N);
}