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
Use conditional internal functions in if-conversion
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
aarch64
/
asm-1.c
blob
bdfa4504f612621dc4478d4f363038c844bc43d2
1
2
/* { dg-do compile } */
3
/* { dg-options "-O3" } */
4
5
typedef
struct
6
{
7
int
i
;
8
int
y
;
9
}
__attribute__
((
aligned
(
16
)))
struct64_t
;
10
11
void
foo
()
12
{
13
struct64_t tmp
;
14
asm
volatile
(
"ldr q0, %[value]"
: : [
value
]
"m"
(
tmp
));
15
}