testsuite: debug: fix dejagnu directive syntax
[official-gcc.git] / gcc / testsuite / gcc.dg / debug / ctf / ctf-int-1.c
blobe4ffcc2b3eb17be4314663207441ba3357fe0843
1 /* Tests for CTF integer base types.
2 - Verify that there is a single record for the base types. */
4 /* { dg-do compile } */
5 /* { dg-options "-O0 -gctf -dA" } */
6 /* { dg-final { scan-assembler-times "ascii \"int.0\"\[\t \]+\[^\n\]*ctf_string" 1 } } */
7 /* { dg-final { scan-assembler-times "ascii \"short int.0\"\[\t \]+\[^\n\]*ctf_string" 1 } } */
8 /* { dg-final { scan-assembler-times "ascii \"long int.0\"\[\t \]+\[^\n\]*ctf_string" 1 } } */
10 int a;
11 int b = 33;
13 short int c = 44;
14 short int d = 45;
16 long int e = 90;
17 long int f;