repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git]
/
test
/
C++Frontend
/
2006-09-27-Debug-Protection.cpp
blob
d9a25aa70e73ab3563574fcd429ac3e6d3a679c7
1
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,}
2
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,}
3
4
class
A
{
5
public
:
6
int
x
;
7
protected
:
8
int
y
;
9
private
:
10
int
z
;
11
};
12
13
A a
;