Add remaining AVX instructions (most of them dealing with GR64 destinations. This...
[oota-llvm.git] / test / FrontendC / 2004-02-13-Memset.c
index 423108b44754c2d90cbd73842bdcd953ccf483be..fc26051f6d85df67b1429cfd535e4fe0c0711715 100644 (file)
@@ -1,6 +1,7 @@
 // RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3
 
-#include <memory.h>
+void *memset(void*, int, long);
+void bzero(void*, long);
 
 void test(int* X, char *Y) {
   memset(X, 4, 1000);