A new test case for the LLVMMemSetOptimization.

llvm-svn: 21663
This commit is contained in:
Reid Spencer 2005-05-03 04:00:24 +00:00
parent 4e3aedeaa6
commit d18dbcbf4c
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
; Test that the LLVMMemSetOptimizer works correctly
; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*llvm.memset'
declare sbyte* %llvm.memset(sbyte*,ubyte,uint,uint)
implementation ; Functions:
int %main () {
%target = alloca [1024 x sbyte]
%target_p = getelementptr [1024 x sbyte]* %target, int 0, int 0
call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 0, uint 1)
call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 1, uint 1)
call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 2, uint 2)
call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 4, uint 4)
call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 8, uint 8)
ret int 0
}