/* Test that we have line information for the line with local variable initializations. *//* { dg-options "-O0 -gdwarf -dA" } *//* { dg-final { scan-assembler ".loc 1 8 \[0-9\]|\[#/!\]\[ \t\]+line 8" } } */intf(registerint a,registerint b) {registerint x = b, y = a;return x + y; }