mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
7 lines
150 B
C
7 lines
150 B
C
|
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | wc -l | grep 3
|
||
|
|
||
|
void test(int* X, char *Y) {
|
||
|
memset(X, 4, 1000);
|
||
|
bzero(Y, 100);
|
||
|
}
|