mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 14:16:08 +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
292 B
C
13 lines
292 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | grep llvm.memset | count 3
|
|
|
|
typedef __SIZE_TYPE__ size_t;
|
|
void *memset(void*, int, size_t);
|
|
void bzero(void*, size_t);
|
|
|
|
void test(int* X, char *Y) {
|
|
// CHECK: call ptr llvm.memset
|
|
memset(X, 4, 1000);
|
|
// CHECK: call void bzero
|
|
bzero(Y, 100);
|
|
}
|