blob: cf095537bebdc7880ae7e03a3749071e3fad5114 [file] [log] [blame]
Matthias Braunf1141282017-02-22 18:47:41 +00001# RUN: llc -run-pass none -o - %s | FileCheck %s
Alex Lorenz8a1915b2015-07-27 22:42:41 +00002# 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
Alex Lorenz5022f6b2015-08-13 23:10:16 +000014body: |
15 ; CHECK: bb.0 (%ir-block.0):
16 bb.0 (%ir-block.0):
Alex Lorenz8a1915b2015-07-27 22:42:41 +000017...