• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -verify-coalescing | FileCheck %s
2target triple = "x86_64-pc-win32"
3
4@fnptr = external global void ()*
5
6define void @test1() {
7entry:
8  %p = load void ()*, void ()** @fnptr
9  tail call void %p()
10  ret void
11}
12
13; CHECK-LABEL: test1{{$}}
14; CHECK-NOT: .seh_proc test1
15; CHECK: rex64 jmpq *fnptr(%rip)
16; CHECK-NOT: .seh_endproc
17