Sign in
ara-mdk
/
platform
/
external
/
clang
/
c90cc9374f18396251760b9fe6468fd1232e9f0e
/
.
/
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
;
}