repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
FrontendC++
/
2006-09-27-Debug-Protection.cpp
blob
2a70a0f5b45783381a30f31dc5442cc021ddc6cd
1
// RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 1,}
2
// RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 2,}
3
class
A
{
4
public
:
5
int
x
;
6
protected
:
7
int
y
;
8
private
:
9
int
z
;
10
};
11
12
A a
;