Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / asm-label2.ll
blob9760cacbc37b8d8cf746b6187bb9a6488229385a
1 ; RUN: llc -mtriple=x86_64-apple-darwin10 -O0 < %s | FileCheck %s
3 ; test that we print a label that we use. We had a bug where
4 ; we would print the jump, but not the label because it was considered
5 ; a fall through.
7 ; CHECK:        jmp     LBB0_1
8 ; CHECK: LBB0_1:
10 define void @foobar() personality ptr @__gxx_personality_v0 {
11 entry:
12   invoke void @_zed()
13           to label %invoke.cont unwind label %lpad
15 invoke.cont:                                      ; preds = %entry
16   ret void
18 lpad:                                             ; preds = %entry
19   %exn = landingpad {ptr, i32}
20             cleanup
21   unreachable
24 declare void @_zed() ssp align 2
26 declare i32 @__gxx_personality_v0(...)