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
PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20081211-1_0.C
blob
89c06acf53a2d2bdc1eba5ae0e002f55bf2aa97a
1
#include "20081211-1.h"
2
3
foo *
4
create_foo (void)
5
{
6
return new foo;
7
}
8
9
void
10
destroy_foo (foo *p)
11
{
12
delete p;
13
}
14
15
int
16
main ()
17
{
18
return 0;
19
}