repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
defarg6.C
blob
fabf0198000b1041fd49cdcaca6a4a9eaab3265f
1
// { dg-do assemble }
2
// Origin: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
3
4
#include <vector>
5
#include <fstream>
6
7
class STACK {
8
public:
9
std::vector<int> data;
10
11
STACK() : data()
12
{ }
13
};