blob: 0ee1aaee421b15fbcab6842ae94e692e1c255478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Bug pr47793: Allow relative paths in profile-generate. */
/* { dg-do run } */
/* { dg-options "-O -fprofile-generate=./" } */
/* { dg-require-profiling "-fprofile-generate" } */
/* { dg-final { scan-file pr47793.gcda "."} } */
int
main(void)
{
return 0;
}
/* { dg-final { cleanup-coverage-files } } */
|