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
/
rfg13.C
blob
ae894d13daf376e1abdef331f94ce058eedfb363
1
// { dg-do assemble }
2
// Bug: g++ does overloading on a function-by-function basis.
3
4
void
5
f ()
6
{
7
void (*fp)(void);
8
{
9
extern void g ();
10
}
11
fp = g; /* { dg-error "" } no 'g' in scope */
12
}