blob: 1f3a458ecf3a9bb2b59758e372c7d78effb86517 [file] [log] [blame]
; RUN: not llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s
; CHECK: LLVM ERROR: cannot lower calls with arbitrary operand bundles!
declare void @g()
define void @f(i32 %arg) {
call void @g() [ "foo"(i32 %arg) ]
ret void
}