blob: 330bee66314157e74bbf0be9e8e64f622c8be69f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep adc
2
3; PR987
4
5declare void %llvm.memcpy.i64(sbyte*, sbyte*, ulong, uint)
6
7void %foo(ulong %a) {
8 %b = add ulong %a, 1
9call void %llvm.memcpy.i64( sbyte* null, sbyte* null, ulong %b, uint 1 )
10 ret void
11}