summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/memmove-4.ll
blob: 027db1f48395a634bcb92a9391cb40e7d459b66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc < %s | not grep call

target triple = "i686-pc-linux-gnu"

define void @a(i8* %a, i8* %b) nounwind {
        %tmp2 = bitcast i8* %a to i8*
        %tmp3 = bitcast i8* %b to i8*
        tail call void @llvm.memmove.i32( i8* %tmp2, i8* %tmp3, i32 12, i32 4 )
        ret void
}

declare void @llvm.memmove.i32(i8*, i8*, i32, i32)
OpenPOWER on IntegriCloud