2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / nop-mcount.c
bloba8e14bce55146ae40ddf711046d09f3b3c83fa65
1 /* Test -mnop-mcount */
2 /* { dg-do compile { target { *-*-linux* && nonpic } } } */
3 /* { dg-options "-pg -mfentry -mrecord-mcount -mnop-mcount" } */
4 /* { dg-final { scan-assembler-not "__fentry__" } } */
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");