PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / record-mcount.c
blob72f10627e0d1c4cd7312d2218465068adb664a92
1 /* Test -mrecord-mcount */
2 /* { dg-do compile { target { *-*-linux* } && { nonpic } } } */
3 /* { dg-options "-pg -mrecord-mcount" } */
4 /* { dg-final { scan-assembler "mcount_loc" } } */
5 /* Origin: Andi Kleen */
6 extern void foobar(char *);
8 void func(void)
10 foobar ("Hello world\n");
13 void func2(void)
15 int i;
16 for (i = 0; i < 10; i++)
17 foobar ("Hello world");
20 void func3(a)
21 char *a;
23 foobar("Hello world");