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
/
crash16.C
blob
22583260aeb5a5fe9e2dceac47526199b84888c7
1
// { dg-do assemble }
2
// { dg-options "-O2" }
3
// Origin: scott snyder <snyder@fnal.gov>
4
5
6
void _S_initialize();
7
8
class locale
9
{
10
public:
11
locale() throw()
12
{ _S_initialize (); }
13
};
14
15
void foo(const locale& __loc);
16
17
void print (const int&)
18
{
19
foo(locale());
20
}