Change memcpy/memset/memmove to have dest and source alignments.
[oota-llvm.git] / test / Object / mangle-ir.ll
1 ; RUN: llvm-as %s -o - | llvm-nm - | FileCheck %s
2
3 target datalayout = "m:o"
4
5 ; CHECK-NOT: memcpy
6 ; CHECK: T _f
7 ; CHECK-NOT: memcpy
8
9 define void @f() {
10   tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* null, i8* null, i64 0, i1 false)
11   ret void
12 }
13
14 declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i1)