Home | History | Annotate | Download | only in Verifier
      1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
      2 ; CHECK: alignment argument of memory intrinsics must be a constant int
      3 ; PR2318
      4 
      5 define void @x(i8* %a, i8* %src, i64 %len, i32 %align) nounwind  {
      6 entry:
      7         tail call void @llvm.memcpy.p0i8.p0i8.i64( i8* %a, i8* %src, i64 %len, i32 %align, i1 false) nounwind 
      8         ret void
      9 }
     10 
     11 declare void @llvm.memcpy.p0i8.p0i8.i64( i8* %a, i8* %src, i64 %len, i32, i1)
     12 
     13