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
Initialize HasMetadata to zero.
[llvm/avr.git]
/
test
/
FrontendC++
/
2003-11-25-ReturningOpaqueByValue.cpp
blob
5ea0a2c4aa8fef2bd162f164b3a07378d1732658
1
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3
#include <vector>
4
std
::
vector
<
int
>
my_method
();
5
6
int
7
main
()
8
{
9
my_method
();
10
return
0
;
11
}
12