mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
cde17c8a3e
This change adds a new intrinsic which is intended to provide memcpy functionality with additional atomicity guarantees. Please refer to the review thread or language reference for further details. Differential Revision: https://reviews.llvm.org/D27133 llvm-svn: 290708
18 lines
732 B
LLVM
18 lines
732 B
LLVM
; RUN: not opt -verify < %s 2>&1 | FileCheck %s
|
|
|
|
define void @test_memcpy(i8* %P, i8* %Q) {
|
|
; CHECK: element size of the element-wise atomic memory intrinsic must be a power of 2
|
|
call void @llvm.memcpy.element.atomic.p0i8.p0i8(i8* align 2 %P, i8* align 2 %Q, i64 4, i32 3)
|
|
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memcpy.element.atomic.p0i8.p0i8(i8* align 2 %P, i8* align 4 %Q, i64 4, i32 4)
|
|
|
|
; CHECK: incorrect alignment of the source argument
|
|
call void @llvm.memcpy.element.atomic.p0i8.p0i8(i8* align 4 %P, i8* align 2 %Q, i64 4, i32 4)
|
|
|
|
ret void
|
|
}
|
|
declare void @llvm.memcpy.element.atomic.p0i8.p0i8(i8* nocapture, i8* nocapture, i64, i32) nounwind
|
|
|
|
; CHECK: input module is broken!
|