Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
2007-04-24-VolatileStructCopy.c
blob: 5eeecce99d2954c71c4b5b84527623a8fcc20275 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// PR1352
struct
foo
{
int
x
;
};
void
copy
(
volatile
struct
foo
*
p
,
struct
foo
*
q
)
{
// CHECK: call void @llvm.memcpy
*
p
=
*
q
;
}