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
RISC-V: Add testcases for unsigned imm vec SAT_SUB form1
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
inline1.C
blob
18d735fd87be9a0fb6980c208da0459de453f93c
1
// PR c++/9167
2
// { dg-options "-finline" }
3
4
struct A {
5
~A();
6
A f(A) { return A(); }
7
};
8
9
10
void f(void)
11
{
12
A a;
13
a.f(a);
14
}