aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll
blob: 330bee66314157e74bbf0be9e8e64f622c8be69f (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep adc

; PR987

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
}