1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -emit-llvm -o - | grep llvm.memset | count 3 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc typedef __SIZE_TYPE__ size_t; 4*f4a2713aSLionel Sambuc void *memset(void*, int, size_t); 5*f4a2713aSLionel Sambuc void bzero(void*, size_t); 6*f4a2713aSLionel Sambuc test(int * X,char * Y)7*f4a2713aSLionel Sambucvoid test(int* X, char *Y) { 8*f4a2713aSLionel Sambuc // CHECK: call i8* llvm.memset 9*f4a2713aSLionel Sambuc memset(X, 4, 1000); 10*f4a2713aSLionel Sambuc // CHECK: call void bzero 11*f4a2713aSLionel Sambuc bzero(Y, 100); 12*f4a2713aSLionel Sambuc } 13