brintos

brintos / llvm-project-archived public Read only

0
0
Text · 292 B · 17065a4 Raw
11 lines · plain
1; RUN: not llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s2 3; CHECK: LLVM ERROR: cannot lower calls with arbitrary operand bundles: foo, bar, baz4 5declare void @g()6 7define void @f(i32 %arg) {8  call void @g() [ "foo"(i32 %arg), "bar"(i32 %arg), "baz"(i32 %arg) ]9  ret void10}11