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
bogus_address_param: warn about passing a bogus address
[smatch.git]
/
cse.h
blob
29c97ea9d27a50f26dae2f0a7951887b697af799
1
#ifndef CSE_H
2
#define CSE_H
3
4
struct
instruction
;
5
struct
entrypoint
;
6
7
/* cse.c */
8
void
cse_collect
(
struct
instruction
*
insn
);
9
void
cse_eliminate
(
struct
entrypoint
*
ep
);
10
11
#endif