mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 12:36:09 +00:00

Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only tests where no manual fixup was required.
13 lines
328 B
C
13 lines
328 B
C
// RUN: %clang_cc1 -fno-builtin-memccpy -emit-llvm < %s| FileCheck %s
|
|
|
|
typedef __SIZE_TYPE__ size_t;
|
|
|
|
void *memccpy(void *, void const *, int, size_t);
|
|
|
|
void test13(char *d, char *s, int c, size_t n) {
|
|
// CHECK: call ptr @memccpy{{.*}} #2
|
|
memccpy(d, s, c, n);
|
|
}
|
|
|
|
// CHECK: attributes #2 = { nobuiltin "no-builtin-memccpy" }
|