llvm-6502/test/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll

13 lines
293 B
LLVM
Raw Normal View History

; 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
}