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
/
alias-canon3.C
blob
22e29e8ad582de8c1c6c6596b8b48005c0acfbea
1
// { dg-do compile }
2
// PR c++/66270
3
4
typedef float __m256 __attribute__ (( __vector_size__(32), __may_alias__ ));
5
struct A {
6
__m256 ymm;
7
const float &f() const;
8
};
9
10
const float &A::f() const {
11
return ymm[1];
12
}