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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
cpp
/
limit-debug-info
/
derived.h
blob
8f95c52a595f07361ec0c78f638346de69481f92
1
#include
"base.h"
2
3
class
Foo
:
public
FooNS
4
{
5
public
:
6
Foo
();
7
8
// Deliberately defined by hand.
9
Foo
&
operator
=(
const
Foo
&
rhs
) {
10
a
=
rhs
.
a
;
11
return
*
this
;
12
}
13
14
char
baz
()
override
;
15
int
a
;
16
};
17
18
extern
Foo foo1
;
19
extern
Foo foo2
;