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
/
overload9.C
blob
59457e18fa5729355a6cf38743b840462c063f16
1
// { dg-do run }
2
struct T { ~T() {} };
3
4
int g ()
5
{
6
foo:
7
T t;
8
int f(int);
9
bar:
10
T t2;
11
int f(double);
12
return f(3);
13
}
14
15
16
int f(int)
17
{
18
return 0;
19
}
20
21
22
int f(double)
23
{
24
return 1;
25
}
26
27
28
int main()
29
{
30
return g();
31
}
32