pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / CodeGen / X86 / memmove-4.ll
blob027db1f48395a634bcb92a9391cb40e7d459b66a
1 ; RUN: llc < %s | not grep call
3 target triple = "i686-pc-linux-gnu"
5 define void @a(i8* %a, i8* %b) nounwind {
6         %tmp2 = bitcast i8* %a to i8*
7         %tmp3 = bitcast i8* %b to i8*
8         tail call void @llvm.memmove.i32( i8* %tmp2, i8* %tmp3, i32 12, i32 4 )
9         ret void
12 declare void @llvm.memmove.i32(i8*, i8*, i32, i32)