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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
temporary6.C
blob
dc660e8fcf46dece39bd528891682af96b96b653
1
// { dg-do assemble }
2
// Bug: the temporary from the default parameter to f2 is reused.
3
4
struct A {};
5
int f2 (int i, const A& ar = A());
6
void f (int i, int j = f2(1));
7
void g () { f (1); }
8
void h () { f (1); }