Sign in
ara-mdk
/
platform
/
external
/
llvm
/
d27047f87dae7c6eb59069b1e5d1368a0b2db5ff
/
.
/
test
/
FrontendC
/
2007-04-24-VolatileStructCopy.c
blob: 4765921f1d21102e90baa0a09038e3ea2106638e [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {volatile store}
// PR1352
struct
foo
{
int
x
;
};
void
copy
(
volatile
struct
foo
*
p
,
struct
foo
*
q
)
{
*
p
=
*
q
;
}