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
2014-10-24 Christophe Lyon <christophe.lyon@linaro.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
alpha
/
pr42774.c
blob
65688002b3a973dca4cf4fb6ba66ef1d9cf0228d
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -mcpu=ev4" } */
3
4
unsigned int
ntfs_getinfo
(
void
*
p
)
5
{
6
char
bootsect
[
8
];
7
8
__builtin_memcpy
(
bootsect
,
p
,
sizeof
bootsect
);
9
return
*(
unsigned short
*)(
bootsect
+
3
);
10
}