brintos

brintos / llvm-project-archived public Read only

0
0
Text · 314 B · f010199 Raw
11 lines · plain
1; RUN: not --crash llc -mtriple=amdgcn -mcpu=gfx1250 < %s 2>&1 | FileCheck -check-prefix=ERR %s2 3; ERR: LLVM ERROR: Cannot select: intrinsic %llvm.amdgcn.s.waitcnt4 5define amdgpu_kernel void @test_waitcnt_builtin() {6  call void @llvm.amdgcn.s.waitcnt(i32 0)7  ret void8}9 10declare void @llvm.amdgcn.s.waitcnt(i32)11