Sign in
llvm
/
llvm-project
/
ba7d78ac4597c99e1815646d711cf736ead4f54a
/
.
/
llvm
/
test
/
CodeGen
/
X86
/
invalid-operand-bundle-call.ll
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
}