Now that PR2957 is resolved, remove a bunch of
[llvm/msp430.git] / test / Verifier / 2008-08-22-MemCpyAlignment.ll
blob6bad2d138d0e9fdc0dbd9f3220bf8e3ba58547c0
1 ; RUN: not llvm-as -f %s -o /dev/null |& grep {alignment argument of memory intrinsics must be a constant int}
2 ; PR2318
4 define void @x(i8* %a, i8* %src, i64 %len, i32 %align) nounwind  {
5 entry:
6         tail call void @llvm.memcpy.i64( i8* %a, i8* %src, i64 %len, i32 %align) nounwind 
7         ret void
10 declare void @llvm.memcpy.i64( i8* %a, i8* %src, i64 %len, i32)