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: Do not inline when callee is versioned but caller is not
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
volatile1.C
blob
9080ed5dc659cef85efb6fe98e5eb6100c71516d
1
// PR c++/26577
2
// The call to bar() was causing an inappropriate dereference of *this,
3
// which led to an abort in cp_expr_size.
4
5
struct A
6
{
7
A(const A&);
8
A& operator=(const A&);
9
static void bar();
10
void baz() volatile;
11
};
12
13
void A::baz() volatile
14
{
15
bar();
16
}