repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
smatch_data/kernel.unreachable.ignore: add BUG(), WARN_ON() and others
[smatch.git]
/
validation
/
expand
/
cost-deref-nested.c
blob
d6b623961378df1c77b7f7c53ecf198cf41ed6e8
1
struct
s
{
2
struct
{
3
int
u
,
v
;
4
}
a
,
b
;
5
};
6
7
static const struct
s s
;
8
9
static int
foo
(
int
c
)
10
{
11
return
c
&&
s
.
b
.
v
;
12
}
13
14
/*
15
* check-name: cost-deref-nested
16
* check-command: test-linearize -fdump-ir $file
17
*
18
* check-output-ignore
19
* check-output-excludes: cbr
20
*/