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
* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
pr55619.c
blob
f1b4e9c0023eb39a61d0ad950e6b2ec52dd9b779
1
/* PR c++/55619 */
2
/* { dg-do compile } */
3
4
int
y
[
4
];
5
6
void
7
f
()
8
{
9
int
x
[
4
] = {
0
,
1
,
2
,
3
};
10
__asm
volatile
(
""
: :
"m"
(
x
),
"m"
(
y
));
11
}