12 lines · plain
1; RUN: not llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s2 3; CHECK: LLVM ERROR: cannot lower callbrs with arbitrary operand bundles: foo4 5define void @f(i32 %arg) {6 callbr void asm "", ""() [ "foo"(i32 %arg) ]7 to label %cont []8 9cont:10 ret void11}12