blob: f4e42084c918df7a6ab79db71bebfee1b89144d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* Verify that we can reconstruct fndecl and stack depth information
after early inlining. */
/* { dg-additional-options "-O2 -fdiagnostics-show-path-depths" } */
#define NULL ((void *)0)
static inline const char*
inner (int flag)
{
if (flag) /* { dg-message "following 'true' branch \\(when 'flag != 0'\\)\\.\\.\\. \\(fndecl 'inner', depth 3\\)" } */
return NULL;
return "foo";
}
static inline const char*
middle (int flag)
{
return inner (flag);
}
char
outer (int flag)
{
return *middle (flag); /* { dg-warning "dereference of NULL" "warning" } */
/* { dg-message "\\(fndecl 'outer', depth 1\\)" "message" { target *-*-* } .-1 } */
}
|