summaryrefslogtreecommitdiffstats
path: root/test/Verifier/2008-08-22-MemCpyAlignment.ll
blob: 6bad2d138d0e9fdc0dbd9f3220bf8e3ba58547c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: not llvm-as -f %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)

OpenPOWER on IntegriCloud