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
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr44915.C
blob
ba7e9660622a2e226d2050356c84ceb74d5e1acc
1
/* { dg-do compile } */
2
/* { dg-options "-findirect-inlining" } */
3
4
struct A;
5
6
typedef void (A::*f_ptr) ();
7
8
void dummy (f_ptr) { }
9
10
void call_dummy (f_ptr cb)
11
{
12
dummy (cb);
13
}