[memprof] Move YAML support to MemProfYAML.h (NFC) (#119515)
[llvm-project.git] / llvm / test / Transforms / HipStdPar / unsupported-asm.ll
blob19e6b28cc91642d1d4807c369e0184bf807ada63
1 ; RUN: not opt -S -mtriple=amdgcn-amd-amdhsa -passes=hipstdpar-select-accelerator-code \
2 ; RUN: %s 2>&1 | FileCheck %s
4 ; CHECK: error: {{.*}} in function foo void (): Accelerator does not support the ASM block:
5 ; CHECK-NEXT: {{.*}}Invalid ASM block{{.*}}
6 define amdgpu_kernel void @foo() {
7 entry:
8   call void @__ASM__hipstdpar_unsupported([18 x i8] c"Invalid ASM block\00")
9   ret void
12 declare void @__ASM__hipstdpar_unsupported([18 x i8])