Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
asm12.C
blob: 9823a8fd7e382ac033b27acf6a21685ce348e823 [
file
] [
log
] [
blame
]
// PR c++/55619
// { dg-do compile }
typedef
int
V __attribute__
((
vector_size
(
4
*
sizeof
(
int
))));
static
const
V C
=
{
0x201
,
0
,
0
,
0
};
static
const
int
D
=
0x201
;
void
f
()
{
__asm
volatile
(
""
:
:
"m"
(
C
));
__asm
volatile
(
""
:
:
"m"
(
D
));
}