File: issue111817-catchswitch-assert.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.4-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,236,516 kB
  • sloc: cpp: 7,619,569; ansic: 1,433,956; asm: 1,058,748; python: 252,181; f90: 94,671; objc: 70,753; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,585; awk: 3,523; javascript: 2,272; xml: 892; fortran: 770
file content (53 lines) | stat: -rw-r--r-- 1,772 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
; RUN: llvm-reduce -abort-on-invalid-reduction --delta-passes=basic-blocks --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
; RUN: FileCheck --check-prefix=CHECK-FINAL %s < %t

; Make sure there's no assertion for invoke destinations that don't
; use landingpad (and use catchswitch instead)

; CHECK-INTERESTINGNESS: invoke

; CHECK-FINAL: bb:
; CHECK-FINAL-NEXT: invoke void @llvm.seh.try.begin()
; CHECK-FINAL-NEXT:   to label %bb7 unwind label %bb1
; CHECK-FINAL: bb1:
; CHECK-FINAL-NEXT: %i = catchswitch within none [label %bb2] unwind to caller

; CHECK-FINAL: bb2:
; CHECK-FINAL-NEXT: %i3 = catchpad within %i [ptr null]
; CHECK-FINAL-NEXT: ret ptr null

; CHECK-FINAL-NOT: bb4
; CHECK-FINAL-NOT: bb5

; CHECK-FINAL: bb7:
; CHECK-FINAL-NEXT: ret ptr null
define ptr @func() personality ptr @__C_specific_handler {
bb:
  invoke void @llvm.seh.try.begin()
          to label %bb7 unwind label %bb1

bb1:                                              ; preds = %bb
  %i = catchswitch within none [label %bb2] unwind to caller

bb2:                                              ; preds = %bb1
  %i3 = catchpad within %i [ptr null]
  catchret from %i3 to label %bb4

bb4:                                              ; preds = %bb2
  invoke void @llvm.seh.try.end()
          to label %bb7 unwind label %bb5

bb5:                                              ; preds = %bb4
  %i6 = cleanuppad within none []
  cleanupret from %i6 unwind to caller

bb7:                                              ; preds = %bb4, %bb
  ret ptr null
}

declare void @llvm.seh.try.begin() #0
declare void @llvm.seh.try.end() #0
declare i32 @__C_specific_handler(...)

attributes #0 = { nounwind willreturn memory(write) }