blob: fc26051f6d85df67b1429cfd535e4fe0c0711715 [file] [log] [blame]
Dan Gohman8c89a502007-08-15 13:36:28 +00001// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Chris Lattneraa99e542008-10-23 00:24:51 +00003void *memset(void*, int, long);
Duncan Sands5e40cc22008-10-29 15:57:37 +00004void bzero(void*, long);
Matthijs Kooijmanb0bf82d2008-06-10 14:37:44 +00005
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006void test(int* X, char *Y) {
7 memset(X, 4, 1000);
8 bzero(Y, 100);
9}