summaryrefslogtreecommitdiff
path: root/test/Verifier/2008-08-22-MemCpyAlignment.ll
blob: aaf69aeef6728482f7e545534127a8cde9f0ee76 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: not llvm-as %s -o /dev/null |& grep {alignment argument of memory intrinsics must be a constant int}
; PR2318

define void @x(i8* %a, i8* %src, i64 %len, i32 %align) nounwind  {
entry:
        tail call void @llvm.memcpy.i64( i8* %a, i8* %src, i64 %len, i32 %align) nounwind 
        ret void
}

declare void @llvm.memcpy.i64( i8* %a, i8* %src, i64 %len, i32)