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
[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git]
/
clang
/
test
/
Analysis
/
concrete-address.c
blob
346f5093e44f7a9285cb0ba8429176404189fd53
1
// RUN: %clang_analyze_cc1 -analyzer-checker=core,alpha.core -verify %s
2
// expected-no-diagnostics
3
4
void
foo
(
void
) {
5
int
*
p
= (
int
*)
0x10000
;
// Should not crash here.
6
*
p
=
3
;
7
}