blob: bd168cc953cc5d98b38fb421711afbda045d1076 [file] [log] [blame]
Owen Anderson63fbf102015-03-02 09:35:06 +00001; RUN: not opt -verify < %s 2>&1 | FileCheck %s
2
Pete Cooper67cf9a72015-11-19 05:56:52 +00003; CHECK: alignment argument of memory intrinsics must be a power of 2
Owen Anderson63fbf102015-03-02 09:35:06 +00004
5define void @foo(i8* %P, i8* %Q) {
Pete Cooper67cf9a72015-11-19 05:56:52 +00006 call void @llvm.memcpy.p0i8.p0i8.i32(i8* %P, i8* %Q, i32 4, i32 3, i1 false)
Owen Anderson63fbf102015-03-02 09:35:06 +00007 ret void
8}
Pete Cooper67cf9a72015-11-19 05:56:52 +00009declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind