Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / pr26757.ll
bloba7abeb5bce25336aca8c66b8ca5a2ef45e1b1be7
1 ; RUN: llc < %s | FileCheck %s
2 target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
3 target triple = "i386-pc-windows-msvc"
5 declare void @throw()
7 define void @test1() personality ptr @__CxxFrameHandler3 {
8   %e = alloca i8, align 4
9   invoke void @throw()
10           to label %.noexc unwind label %catch.dispatch
12 .noexc:
13   unreachable
15 catch.object.Exception:
16   %cp = catchpad within %cs [ptr null, i32 0, ptr %e]
17   catchret from %cp to label %catchhandler
19 catch.dispatch:
20   %cs = catchswitch within none [label %catch.object.Exception] unwind to caller
22 catchhandler:
23   call void @use(ptr %e)
24   ret void
27 ; CHECK-LABEL: $handlerMap$0$test1:
28 ; CHECK:      .long 0
29 ; CHECK-NEXT: .long 0
30 ; CHECK-NEXT: .long -20
32 declare void @use(ptr)
34 declare i32 @__CxxFrameHandler3(...)