For PR1319:
[oota-llvm.git] / test / CodeGen / Generic / 2006-11-06-MemIntrinsicExpand.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep adc
2
3 ; PR987
4
5 declare void %llvm.memcpy.i64(sbyte*, sbyte*, ulong, uint)
6
7 void %foo(ulong %a) {
8   %b = add ulong %a, 1
9 call void %llvm.memcpy.i64( sbyte* null, sbyte* null, ulong %b, uint 1 )
10   ret void
11 }