1# RUN: llc -run-pass none -o - %s | FileCheck %s
2# This test ensures that the MIR parser preserves unnamed LLVM IR block
3# references.
4
5--- |
6
7 define i32 @foo() {
8 ret i32 0
9 }
10
11...
12---
13name: foo
14body: |
15 ; CHECK: bb.0 (%ir-block.0):
16 bb.0 (%ir-block.0):
17...
18