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
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
pr54831.C
blob
8e7312061a022332108e4e2bdb909477d0a3148e
1
// PR debug/54831
2
// { dg-do compile }
3
// { dg-options "-O -fno-split-wide-types -g" }
4
5
struct S
6
{
7
int m1();
8
int m2();
9
};
10
11
typedef void (S::*mptr) ();
12
13
mptr gmp;
14
void bar (mptr f);
15
16
void foo (mptr f)
17
{
18
f = gmp;
19
bar (f);
20
}