Files
linux-packaging-mono/external/llvm/test/CodeGen/X86/pr25828.ll
Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

31 lines
451 B
LLVM

; RUN: llc < %s -mtriple=i686-pc-windows-msvc -relocation-model=pic | FileCheck %s
; MOVPC32r should not generate CFI under windows
; CHECK-LABEL: _foo:
; CHECK-NOT: .cfi_adjust_cfa_offset
define void @foo(i8) {
entry-block:
switch i8 %0, label %bb2 [
i8 1, label %bb1
i8 2, label %bb2
i8 3, label %bb3
i8 4, label %bb4
i8 5, label %bb5
]
bb1:
ret void
bb2:
ret void
bb3:
ret void
bb4:
ret void
bb5:
ret void
}