[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / seh-exception-code.ll
blob5b25bae80cde09550b17b2b3d9ab9a2c36fdd490
1 ; RUN: llc -verify-machineinstrs < %s | FileCheck %s
2 ; RUN: llc -verify-machineinstrs -O0 < %s | FileCheck %s
4 target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-pc-windows-msvc"
7 declare void @f(i32)
8 declare i32 @__C_specific_handler(...)
9 declare i32 @llvm.eh.exceptioncode(token)
11 define void @ehcode() personality ptr @__C_specific_handler {
12 entry:
13   invoke void @f(i32 0)
14           to label %__try.cont unwind label %catch.dispatch
16 catch.dispatch:                                   ; preds = %entry
17   %cs = catchswitch within none [label %__except] unwind to caller
19 __except:                                         ; preds = %catch.dispatch
20   %pad = catchpad within %cs [ptr null]
21   catchret from %pad to label %__except.1
23 __except.1:                                       ; preds = %__except
24   %code = call i32 @llvm.eh.exceptioncode(token %pad)
25   call void @f(i32 %code)
26   br label %__try.cont
28 __try.cont:                                       ; preds = %entry, %__except.1
29   ret void
32 ; CHECK-LABEL: ehcode:
33 ; CHECK: xorl %ecx, %ecx
34 ; CHECK: callq f
36 ; CHECK: # %__except
37 ; CHECK: movl %eax, %ecx
38 ; CHECK-NEXT: callq f