repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC++
/
2003-09-30-CommaExprBug.cpp
blob
365795dafde495462e92bacb35e76a4ffa101f64
1
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3
class
Empty
{};
4
5
void
foo
(
Empty E
);
6
7
void
bar
() {
8
foo
(
Empty
());
9
}
10