Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / Generic / 2006-11-06-MemIntrinsicExpand.ll
bloba773759f36ea96452a3b81e5bee2383e47842e1a
1 ; RUN: llvm-as < %s | llc -march=x86 | not grep adc
2 ; PR987
4 declare void @llvm.memcpy.i64(i8*, i8*, i64, i32)
6 define void @foo(i64 %a) {
7         %b = add i64 %a, 1              ; <i64> [#uses=1]
8         call void @llvm.memcpy.i64( i8* null, i8* null, i64 %b, i32 1 )
9         ret void