repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
Analysis
/
derived-to-base.cpp
blob
2a9244ef34b2121150a646c9530b0e6ef09d1826
1
// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region %s
2
3
class
A
{
4
protected
:
5
int
x
;
6
};
7
8
class
B
:
public
A
{
9
public
:
10
void
f
();
11
};
12
13
void
B
::
f
() {
14
x
=
3
;
15
}