repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git]
/
clang
/
tools
/
scan-build-py
/
tests
/
functional
/
src
/
emit-two.c
blob
faea77167f4c3734a1a46f1b15441c0d6fbd7a73
1
2
int
bad_guy
(
int
*
i
)
3
{
4
*
i
=
9
;
5
return
*
i
;
6
}
7
8
void
bad_guy_test
()
9
{
10
int
*
ptr
=
0
;
11
12
bad_guy
(
ptr
);
13
}