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
FSF GCC merge 02/23/03
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.eh
/
crash1.C
blob
6ba4d0854b128247043282fc550abb3a0f831c55
1
// Build don't link:
2
// Special g++ Options: -O1 -fno-inline-functions
3
4
struct A
5
{
6
~A ();
7
};
8
9
bool foo ();
10
11
int i;
12
int j;
13
14
A bar ()
15
{
16
for (i = 0; i < 1; ++i)
17
if (j)
18
{
19
A tmp;
20
return tmp;
21
}
22
}