mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
c201a7a911
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11373 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
319 B
LLVM
14 lines
319 B
LLVM
; RUN: analyze %s -datastructure-gc -dsgc-check-flags=X:SMR
|
|
|
|
declare void %llvm.memcpy(sbyte*, sbyte*, uint, uint)
|
|
|
|
void %test() {
|
|
%X = alloca int
|
|
%Y = alloca int
|
|
%x = cast int* %X to sbyte*
|
|
%y = cast int* %Y to sbyte*
|
|
store int 4, int* %X
|
|
call void %llvm.memcpy(sbyte* %x, sbyte* %y, uint 4, uint 4)
|
|
ret void
|
|
}
|