bolt/deps/llvm-18.1.8/llvm/test/CodeGen/AMDGPU/memcpy-inline-fails.ll
2025-02-14 19:21:04 +01:00

11 lines
428 B
LLVM

; NOTE: This is expected to fail on target that do not support memcpy.
; RUN: llc < %s -mtriple=r600-unknown-linux-gnu 2> %t.err || true
; RUN: FileCheck --input-file %t.err %s
declare void @llvm.memcpy.inline.p0.p0.i64(ptr nocapture, ptr nocapture, i64, i1) nounwind
define void @test1(ptr %a, ptr %b) nounwind {
; CHECK: LLVM ERROR
tail call void @llvm.memcpy.inline.p0.p0.i64(ptr %a, ptr %b, i64 8, i1 0 )
ret void
}