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
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
pr85329.C
blob
fb77e42cd7893d44acbcbd4d389cdc24bcf125c5
1
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2
/* { dg-require-ifunc "" } */
3
4
struct a
5
{
6
__attribute__((target_clones("sse", "default"))) void operator^=(a) {}
7
} * b;
8
9
class c {
10
public:
11
a *d();
12
};
13
14
class f {
15
void g();
16
c e;
17
};
18
19
void f::g() { *e.d() ^= b[0]; }