You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
332 B
11 lines
332 B
// RUN: %clang_cc1 -triple x86_64-apple-macosx10.8.0 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
void *memcpy(void *restrict s1, const void *restrict s2, unsigned long n);
|
|
|
|
// PR13697
|
|
void test1(int *a, id b) {
|
|
// CHECK: @test1
|
|
// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* {{.*}}, i64 8, i1 false)
|
|
memcpy(a, b, 8);
|
|
}
|