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
d: Fix gdc -O2 -mavx generates misaligned vmovdqa instruction [PR114171]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
overload15.C
blob
fdd692b09eb3a3eac4fb4aaf4adf6287e21dba60
1
// { dg-do assemble }
2
// Bug: g++ thinks that int->long is a promotion.
3
4
long f (long, long);
5
double f (double, double);
6
7
void g (double d)
8
{
9
f (d, 0);
10
}