aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Bitcode/2021-07-22-Parse-Metadata-Operand-Bundles.ll
blob: 35c6131bbad60b026ef730436c21ad2472c4908e (plain)
1
2
3
4
5
6
7
8
9
; This test ensures that we parse metadata operand bundle values.
; RUN: llvm-as < %s

declare void @callee()

define void @call_with_operand_bundle() {
  call void @callee() [ "op_type"(metadata !"metadata_string") ]
  ret void
}