mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 06:06:27 +00:00
13 lines
293 B
LLVM
13 lines
293 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86 &&
|
||
|
; RUN: llvm-as < %s | llc -march=x86 | not grep adc
|
||
|
|
||
|
; PR988
|
||
|
|
||
|
declare void %llvm.memcpy.i64(sbyte*, sbyte*, ulong, uint)
|
||
|
|
||
|
void %foo(ulong %a) {
|
||
|
%b = add ulong %a, 1
|
||
|
call void %llvm.memcpy.i64( sbyte* null, sbyte* null, ulong %b, uint 1 )
|
||
|
ret void
|
||
|
}
|