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
Fix PR48484
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20101014-1_0.C
blob
d2f599e40b555468384e5d4fb7186719fd0699dc
1
// { dg-lto-do run }
2
3
static const char *fname;
4
struct S
5
{
6
S () { fname = __func__; }
7
};
8
extern "C" void abort (void);
9
int
10
main ()
11
{
12
S tmp;
13
if (fname[0] != 'S')
14
abort ();
15
return 0;
16
}