mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
Test that the CFE compiles memset and bzero to llvm.memset
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11435 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d64e0df32b
commit
90cf614aa5
6
test/CFrontend/2004-02-13-Memset.c
Normal file
6
test/CFrontend/2004-02-13-Memset.c
Normal file
@ -0,0 +1,6 @@
|
||||
// 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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user