mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
794fa1f8f7
llvm-svn: 41097
7 lines
143 B
C
7 lines
143 B
C
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3
|
|
|
|
void test(int* X, char *Y) {
|
|
memset(X, 4, 1000);
|
|
bzero(Y, 100);
|
|
}
|