repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git]
/
test
/
FrontendC++
/
2005-07-21-VirtualBaseAccess.cpp
blob
7711cff6d36093f27426fb74251b893adca9575f
1
// RUN: %llvmgxx -xc++ %s -c -o - | opt -die | llvm-dis | not grep cast
2
3
void
foo
(
int
*);
4
5
struct
FOO
{
6
int
X
;
7
};
8
9
struct
BAR
:
virtual
FOO
{
BAR
(); };
10
11
int
testfn
() {
12
BAR B
;
13
foo
(&
B
.
X
);
14
}