Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Mips / insn-zero-size-bb.ll
bloba5c16f8c45322e213ea2f136a653594c3caff739
1 ; RUN: llc < %s -mtriple=mips -mcpu=mips32 | FileCheck %s
2 ; RUN: llc < %s -mtriple=mips -mcpu=mips32r3 -mattr=+micromips | FileCheck %s
3 ; RUN: llc < %s -mtriple=mips -mattr=mips16 | FileCheck %s
5 ; Verify that we emit the .insn directive for zero-sized (empty) basic blocks.
6 ; This only really matters for microMIPS and MIPS16.
8 declare i32 @foo(...)
9 declare void @bar()
11 define void @main() personality ptr @foo {
12 entry:
13   invoke void @bar() #0
14           to label %unreachable unwind label %return
16 unreachable:
17 ; CHECK:          {{.*}}: # %unreachable
18 ; CHECK-NEXT:         .insn
19   unreachable
21 return:
22   %0 = landingpad { ptr, i32 }
23           catch ptr null
24   ret void
27 attributes #0 = { noreturn }